* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.tabs {
    display: flex;
    margin-bottom: 1.5rem;
}

.header-text {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #FFBA49;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e6a73e;
}

.secondary-btn {
    background-color: #f5f5f5;
    color: #333;
    margin-top: 0.75rem;
}

.secondary-btn:hover {
    background-color: #e0e0e0;
}

.form-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.social-login {
    visibility: hidden;
    position: absolute;
    margin-top: 1.5rem;
    text-align: center;
}

.divider {
    visibility: hidden;
    position: absolute;
}

.social-btn {
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #f5f5f5;
}

.facebook-btn {
    margin-top: 0.75rem;
    background-color: #f5f9ff;
    color: #4267B2;
    border: 1px solid #4267B2;
}

.facebook-btn:hover {
    background-color: #edf3ff;
}

.divider {
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}

.divider span {
    position: relative;
    background-color: white;
    padding: 0 10px;
    color: #777;
}

.message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
}

.error {
    background-color: #ffebee;
    color: #c62828;
}

.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.forgot-password a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password a:hover {
    color: #FFBA49;
    text-decoration: underline;
}



#passwordResetForm {
    display: none;
}

#userInfo {
    display: none;
    text-align: center;
}

#userInfo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}