.login-container {
    width: 360px;
    margin: 120px auto 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 32px;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: #f5f5f5;
    transition: border 0.2s, background 0.2s;
}
.input-group input:focus {
    border: 1.5px solid #000;
    background: #fff;
}
.options {
    display: flex;
    justify-content: center;
    gap:10px;
    /* padding-left: 170px; */
    /* margin: 15px 0; */
}
.options label {
    display: flex;
    align-items: center;
    gap: 4px;
}
.find-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.find-link:hover {
    text-decoration: underline;
    color: #333;
}
.login-btn {
    width: 100%;
    padding: 13px 0;
    background: #000;
    color: #fff;
    border: none;
    /* border-radius: 6px; */
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #333;
}
.signup-btn {
    display: block;    
    width: 100%;
    max-width: 400px;  
    margin: 18px auto; 
    padding: 12px 0;
    background: #fff;
    color: #000;
    border: 1.5px solid #000;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.2s, color 0.2s;
    text-align: center; 
    text-decoration: none;  
}
.signup-btn:hover {
    background: #f5f5f5;
    color: #333;
}
body {
    background: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
} 