/* static/css/auth.css */
/* Login/Register Styles */
.login-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 0 20px;
}

.login-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px 26px;
    background: white;
}

.login-title {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #0f1111;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
    color: #111;
}

.form-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #a6a6a6;
    border-radius: 3px;
    font-size: 13px;
    height: 31px;
}

.form-input:focus {
    outline: 3px solid #c8f3fa;
    border-color: #007185;
}

.password-toggle {
    position: relative;
}

.toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #0066c0;
    font-size: 12px;
}

.amazon-btn {
    width: 100%;
    padding: 8px;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.amazon-btn:hover {
    background: #f7ca00;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #767676;
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e7e7e7;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}