/* Custom Auth Styles similar to images */
body {
    background-color: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    /* or system-ui */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f2f2f2;
    /* Match body or slight contrast */
}

/* Logo Section */
.logo_container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    /* background: #3d0e52; */
    /* Dark purple bg from image */
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* border: 5px solid #fff; */
}

.logo_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover */
    border-radius: 50%;
}

.welcome-text,
.login_text {
    font-size: 24px;
    font-weight: bold;
    color: #3d0e52;
    /* Purple text */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.welcome-text span {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    text-transform: none;
}

/* Input Fields */
.input-group {
    background: #e0e0e0;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    box-shadow: inset 5px 5px 10px #bebebe,
        inset -5px -5px 10px #ffffff;
    /* Neumorphism inner shadow */
}

.input-prefix {
    font-weight: bold;
    color: #333;
    padding-right: 10px;
    border-right: 1px solid #ccc;
    margin-right: 10px;
}

.input-group input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* For inputs without prefix */
.input-group.no-prefix {
    padding-left: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(180deg, #c0392b, #922b21);
    color: white;
    border: none;
    padding: 15px 0;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px 10px #bebebe,
        -5px -5px 10px #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: transform 0.1s;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: #4a235a;
    /* Purple */
    color: white;
    border: none;
    padding: 15px 0;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 5px 5px 10px #bebebe,
        -5px -5px 10px #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
    text-decoration: none;
    display: block;
}

.forgot-password {
    text-align: left;
    margin-bottom: 20px;
}

.forgot-password a {
    color: red;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: #000;
    font-weight: bold;
    margin: 20px 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #c0392b;
    /* Red line */
}

.divider-text span {
    padding: 0 10px;
}

/* Social/Contact Buttons */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn {
    width: 120px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #43a047;
    /* Green */
}

.btn-call {
    background-color: #c0392b;
    /* Red */
}

/* Alerts */
.custom-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3b3b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    font-size: 14px;
    font-weight: bold;
    width: max-content;
    max-width: 90%;
}

.custom-alert.success {
    background: #43a047;
}

.custom-alert i {
    font-size: 18px;
    background: white;
    color: #ff3b3b;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

/* Responsive */
@media (min-width: 768px) {
    .login-container {
        border-radius: 20px;
        background: #f2f2f2;
        /* Optional: Add a subtle shadow on desktop to distinguish card */
        /* box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff; */
    }
}