/* Custom styles for authentication forms */

/* Logo in auth form */
.logo-container {
    text-align: center;
    margin: 1px 0;
}

.auth-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Form buttons spacing */
.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Spacing between buttons */
}

/* Forgot password link */
.forgot-password {
    text-align: center;
    margin: 5px 0 5px;
}

.forgot-password a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.6rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Policy links at bottom of login screen */
.policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 1px;
    padding-top: 1px;
   /* border-top: 1px solid rgba(0, 0, 0, 0.1);*/
    font-size: 0.6rem;
}

.policy-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.2s;
}

.policy-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-logo {
        width: 50px;
        height: 50px;
    }
    
    .policy-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
    }
} 