:root {
    --primary: #0F766E;
    --secondary: #14B8A6;
    --soft: #5EEAD4;
    --light: #F8FAFC;
    --dark: #1F2937;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    background: linear-gradient(135deg,
            #F8FAFC 0%,
            #ECFDF5 35%,
            #CCFBF1 70%,
            #F0FDFA 100%);
}

.login-wrapper {
    width: 100%;
    max-width: 1000px;
}

.login-card {
    background: #fff;
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.left-side {
    background: linear-gradient(180deg,
            var(--primary),
            var(--secondary));

    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.logo-circle i {
    font-size: 40px;
}

.left-side h3 {
    font-weight: 700;
    line-height: 1.5;
}

.left-side p {
    opacity: .9;
    margin-top: 15px;
}

.feature {
    margin-top: 30px;
}

.feature div {
    margin-bottom: 12px;
}

.right-side {
    padding: 50px;
}

.login-title {
    font-weight: 700;
    color: var(--dark);
}

.login-subtitle {
    color: #6B7280;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: #374151;
}

.form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #D1D5DB;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

.btn-login {
    background: var(--primary);
    color: white;
    height: 55px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.btn-login:hover {
    background: var(--secondary);
    color: white;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    color: #6B7280;
    font-size: 13px;
}

@media(max-width:991px) {

    .left-side {
        display: none;
    }

    .right-side {
        padding: 35px;
    }

}