﻿body.login-page {
    margin: 0;
    padding: 0;
    font-family: Segoe UI,Arial,sans-serif;
    background: #EEF5F7;
}

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

.login-left {
    width: 50%;
    background: #1E4F4A;
    color: white;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .login-left h1 {
        font-size: 64px;
        font-weight: 700;
        letter-spacing: .5px;
    }

    .login-left h5 {
        color: #CDEBE8;
        margin-top: 10px;
    }

    .login-left hr {
        border-color: rgba(255,255,255,.25);
        margin: 30px 0;
    }

.login-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
}

.login-company {
    color: #CDEBE8;
    font-size: 14px;
}

.login-right {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.login-card {
    width: 560px;
    background: white;
    border-radius: 16px;
    padding: 55px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .login-card h2 {
        color: #1E4F4A;
        font-size:48px;
        margin-bottom:10px;
        font-weight: 700;
    }

.login-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.login-input {
    height: 46px;
    border-radius: 8px;
}

.btn-login {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 8px;
    background: #1E4F4A;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

    .btn-login:hover {
        background: #26655E;
        color: white;
    }

@media(max-width:992px) {

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }
}
