﻿body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f6f9fc;
}

.auth-wrapper {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */

.auth-left {
    flex: 1;
    background: linear-gradient(135deg,#0ea5e9,#2563eb);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.auth-brand {
    flex: 1;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

    .auth-brand h1 {
        font-size: 48px;
        font-weight: 700;
    }

    .auth-brand p {
        margin-top: 10px;
        font-size: 18px;
        opacity: .9;
    }

.logo {
    width: 100px;
}

.brand {
    margin-bottom: 40px;
}

    .brand h1 {
        font-size: 34px;
        margin: 10px 0 0;
    }

.tagline h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.tagline p {
    opacity: .9;
    max-width: 420px;
}

/* RIGHT SIDE */

.auth-form-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
}

.auth-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

    .auth-divider span {
        background: #fff;
        padding: 0 15px;
        color: #888;
        font-size: 14px;
    }

    .auth-divider:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e5e5e5;
        z-index: -1;
    }

.auth-register {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

    .auth-register a {
        color: #4f46e5;
        font-weight: 600;
        margin-left: 5px;
        text-decoration: none;
    }

        .auth-register a:hover {
            text-decoration: underline;
        }

.auth-card {
    width: 400px;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .auth-card h3 {
        margin-bottom: 25px;
    }

    /* Inputs */

    .auth-card .form-control {
        height: 46px;
        border-radius: 8px;
        font-size: 17.5px;
    }

    .auth-card .input-group-text {
        border-radius: 0 8px 8px 0;
    }

.auth-cardReg {
    max-width: 500px;
    width: 80%;
    background: white;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .auth-cardReg h3 {
        margin-bottom: 25px;
    }

    /* Inputs */

    .auth-cardReg .form-control {
        height: 22px;
        margin-bottom: 10px;
        border-radius: 8px;
        font-size: 17.5px;
    }

    .auth-cardReg .input-group-text {
        border-radius: 0 8px 8px 0;
    }


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

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    background: #2563eb;
    border: none;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

    .btn-login:hover {
        background: #1d4ed8;
    }

.footer {
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

/* Buttons */

.btn-healix {
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    border: none;
    width: 100%;
    height: 46px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    margin-top : 10px;
}

    .btn-healix:hover {
        opacity: .9;
    }

/* Links */

.auth-links {
    text-align: center;
    margin-top: 20px;
}

    .auth-links a {
        color: #2563eb;
        font-weight: 500;
    }

/* Alerts */

.alert {
    border-radius: 8px;
}
