/* =========== LOGIN PAGE ONLY ============ */

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.login-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.03);
    padding: 48px 40px 36px 40px;
    min-width: 340px;
    max-width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.login-subtitle {
    font-size: 1.08rem;
    margin-bottom: 32px;
    color: #444;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    margin-bottom: 8px;
    margin-top: 18px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    border: 1.5px solid #dedede;
    border-radius: 6px;
    background: #f9f9f9;
    transition: border 0.2s;
    margin-bottom: 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #52ffc5;
    background: #fff;
}

.login-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
}


.login-links {
    margin-top: 18px;
    font-size: 0.97rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px; /* optional, for spacing on small screens */
}
.login-links a {
    color: #52ffc5;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    display: none;
}
.login-links a:hover {
    text-decoration: underline;
    color: #16b98a;
}


@media (max-width: 600px) {
    .login-box {
        padding: 24px 6vw 20px 6vw;
        min-width: unset;
    }
}

