body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.notice {
    background-color: #f5f5f5; /* Lighter background */
    color: #777; /* Subtle gray text color */
    padding: 15px;
    border: 1px solid #e0e0e0; /* Very light border */
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin: 15px 0;
}


h1 {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.instruction {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"], input[type="email"], input[type="tel"] {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    border-color: #333333;
    outline: none;
}

.btn {
    padding: 12px;
    font-size: 1rem;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333333;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 180px;
    margin-bottom: 10px;
}
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
}