/* Login and Register Styling */
.auth-container{
    background-color: whitesmoke;
}
.otp-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-box-login, .otp-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
}

.otp-box-login:focus, .otp-box:focus {
    border-color: #000;
}

.mobile-input-group {
    position: relative;
}

.mobile-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #666;
    pointer-events: none;
}

.mobile-input {
    padding-left: 55px !important;
}

.auth-card {
    border-radius: 4px;
    border: none;
    margin-top: 120px;
}

.google-btn {
    border: 2px solid #ddd;
    font-weight: 600;
    padding: 14px;
    transition: all 0.3s;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #000;
}

.divider-text {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider-text span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
}

.btn-send-otp {
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s;
}

.btn-send-otp:hover {
    background: #333;
    transform: translateY(-2px);
    color:#fff;
}

.btn-verify {
    background: #28a745;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    border: none;
}

.btn-verify:hover {
    background: #218838;
}

.form-control {
    border-radius: 4px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
}

.form-control:focus {
    border-color: #000;
}

.link-text {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.link-text:hover {
    color: #000;
}