﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
}

/* MAIN LAYOUT */
.login-container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    width: 50%;
    height: 100vh;
    background: #002f5f;
    clip-path: polygon(0 0, 98% 50%, 0 100%);
    position: relative;
}


.logo-circle {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    background: #002f5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .logo-circle img {
        width: 300px;
        height: auto;
    }

.right-panel {
    width: 50%;
    display: flex;
    align-items: center;
/*    justify-content: center;*/
}

.login-card {
    width: 500px;
   height:90vh;
    padding: 40px;
    border-radius: 18px;
    border: 2px solid #3e86c7;
    box-shadow: 12px 12px 0 #023A6B;
    margin-right:80px;
}

    .login-card h2 {
        text-align: center;
        color: #023A6B;
        font-size:30px;
        margin-bottom: 35px;
        margin-top: 35px;
    }

    /* INPUT */
    .login-card input[type="email"] {
        width: 100%;
        padding: 14px;
        border-radius: 30px;
        border: 2px solid #023A6B;
        margin-bottom: 50px;
        outline: none;
    }

/* TERMS */
.terms {
    font-size: 13px;
    margin-bottom: 35px;
}

    .terms a {
        color: #023A6B;
        font-weight: 600;
        text-decoration: none;
    }

/* BUTTON */
.login-card button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #023A6B;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom:35px;
}

/* INFO TEXT */
.info {
    margin-top: 15px;
    font-size: 13px;
    color: #ff5a00;
    text-align: center;
}

/* ===================== RESPONSIVE ===================== */

/* TABLET */
@media (max-width: 992px) {
    .left-panel {
        width: 50%;
    }

    .right-panel {
        width: 50%;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        height: 280px;
        clip-path: none;
    }

    .logo-circle {
        width: 220px;
        height: 220px;
    }

    .right-panel {
        width: 100%;
        padding: 30px 0;
    }

    .login-card {
        width: 90%;
        box-shadow: 6px 6px 0 #023A6B;
    }
}
