@import url(/public/css/main.css);

main.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px 0;
}

.form-container {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 0;
}

.form-container h2 {
    color: royalblue;
    margin-bottom: 10px;
}

.form-container p {
    color: #666;
    margin-bottom: 25px;
}

.input-group {
    text-align: left;
    position: relative;
    margin-bottom: 20px;
}


.input-group label {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group textarea{
    resize: none;
    height: 100px;
}

.input-group select:focus,
.input-group input:focus {
    border-color: royalblue;
    box-shadow: 0 0 5px rgba(65, 105, 225, 0.3);
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 39px;
    color: #888;
}

form .btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, royalblue, purple);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 20px;
}

form .btn:hover {
    background: purple;
}

form .google-btn {
    background: #db4437;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

form .google-btn i {
    font-size: 1.2rem;
}

form .options {
    margin-top: 15px;
    text-align: right;
}

form .options a {
    color: royalblue;
    font-size: 0.9rem;
    text-decoration: none;
}

form .options a:hover {
    text-decoration: underline;
}

form .privacy {
    text-align: left;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

form .privacy a {
    color: purple;
    text-decoration: none;
    font-weight: 600;
}

form .other-page-link {
    margin-top: 25px;
    font-size: 0.95rem;
}

form .other-page-link a {
    color: royalblue;
    text-decoration: none;
    font-weight: 600;
}

form .other-page-link a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    .btn,
    .google-btn {
        font-size: 0.95rem;
    }
}