/**
 * Authentication Pages Styles
 * Used by: login.html, signup.html, verify_email.html
 */

/* Social Login Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-social:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
}

.btn-social-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.btn-social-text {
    font-weight: 500;
}

.btn-google:hover {
    border-color: #4285F4;
}

.btn-microsoft:hover {
    border-color: #0078d4;
}

/* Auth Card */
.auth-card {
    width: 400px;
    top: 60px;
        margin: auto;

}

/* Auth Logo */
.auth-logo {
    font-weight: 800;
    text-transform: lowercase;
}

/* Auth Icon */
.auth-icon {
    font-size: 3rem;
}
