﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',sans-serif;
}


body {
    overflow: hidden;
}



.page {
    height: 100vh;
}



/* NAVBAR */

.navbar {
    height: 55px;
    background: #004b85;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    color: white;
}



.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}



.nav-logo {
    width: 40px;
}



.menu {
    display: flex;
    gap: 25px;
    font-size: 14px;
}





/* MAIN */

.main-area {
    height: calc(100vh - 95px);
    display: flex;
}




/* IMAGE */

.image-side {
    width: 65%;
    position: relative;
    overflow: hidden;
}



.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,45,90,.65), rgba(0,45,90,.15) );
}





.caption {
    position: absolute;
    left: 150px;
    top: 150px;
    color: white;
}



.hero-logo {
    width: 90px;
    margin-bottom: 20px;
}



.caption h1 {
    font-size: 42px;
    letter-spacing: 8px;
}


.caption h4 {
    letter-spacing: 10px;
    font-weight: 400;
}



.separator {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 25px 0;
}


    .separator span {
        width: 70px;
        height: 2px;
        background: white;
    }


    .separator i {
        color: #00a8ff;
    }




.tagline {
    font-size: 16px;
}




.features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}


    .features div {
        display: flex;
        gap: 12px;
        align-items: center;
    }



    .features i {
        font-size: 32px;
    }


    .features small {
        display: block;
    }





/* LOGIN AREA */


.login-side {
    width: 35%;
    background: #eaf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}





.login-card {
    width: 340px;
    padding: 25px;
    background: white;
    border-top: 3px solid #006fc9;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}




.login-logo {
    text-align: center;
}



    .login-logo img {
        width: 65px;
    }




.login-card h2 {
    text-align: center;
    color: #003b73;
    font-size: 24px;
    margin: 10px 0;
}




.line {
    width: 40px;
    height: 3px;
    background: #006fc9;
    margin: 12px auto 25px;
}





label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}



/*
.input-box {
    height: 38px;
    border: 1px solid #cbd8e8;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}*/

.input-box {
    height: 38px;
    border: 1px solid #cbd8e8;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}



    .input-box > i {
        width: 38px;
        text-align: center;
        color: #7b8da0;
    }



    .input-box input {
        flex: 1;
        height: 100%;
        border: none;
        outline: none;
        font-size: 14px;
    }





.toggle-password {
    width: 38px;
    height: 100%;
    border: none;
    background: white;
    color: #7b8da0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}



    .toggle-password:hover {
        color: #006fc9;
        background: white;
    }





.validation {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-bottom: 10px;
}





.forgot {
    text-align: right;
    margin: 18px 0;
}


    .forgot a {
        font-size: 13px;
        color: #006fc9;
        text-decoration: none;
    }



/*.btn-login {
    width: 100%;
    height: 42px;
    border: none;
    background: #006fc9;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}*/
.btn-login {
    width: 100%;
    height: 42px;
    margin-top: 22px; /* space between password and button */

    border: none;
    background: #006fc9;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}


    .btn-login:hover {
        background: #004c91;
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0,0,0,.25);
    }





footer {
    height: 40px;
    background: #004b85;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
