@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Book Antiqua", "Palatino Linotype", Palatino, serif;
}

body {
    background: #e5e5e5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN WRAPPER */
.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN BOX */
.box {
    width: 75%;
    height: 90vh;
    background: #ffffff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ================= LEFT SECTION ================= */
.left {
    width: 65%;
    background: #ffffff;
    padding: 18% 80px;
    color: black;
    display: flex;
    flex-direction: column;
}

/* NAV */
nav {
    margin-bottom: 40px;
}

nav a {
    color: #bfbfbf;
    text-decoration: none;
    margin-right: 20px;
    font-size: 12px;
}

.welcome {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-circle img {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    /*border: 1px solid black;*/
}

.left h1 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.left h1 span {
    font-weight: 500;
    display: block;
}

.right {
    width: 50%;
    background: #5fa2a2;
    padding: 60px;
    color: white;
    border-radius: 30px;
}

.right h2 {
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: 500;
}

.input-box {
    background: rgba(255,255,255,0.25);
    padding: 12px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-box i {
    margin-right: 10px;
    color: black;
    cursor: pointer;
}


.input-box input {
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    color: white;
    font-size: 14px;
}

.input-box input::placeholder {
    color: white;
    opacity: 1;
    font-style: italic;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 25px;
}

.options a {
    color: white;
    text-decoration: none;
    font-style: italic;
}

.login-btn {
    display: inline-block;
    width: 100%;
    background: #ffffff;
    color: black;
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.login-btn:hover {
    background: #4b8f8f;
    color: white;
}

@media (max-width: 900px) {
    .box {
        flex-direction: column;
        height: auto;
    }

    .left,
    .right {
        width: 100%;
        padding: 40px;
    }

    .welcome {
        flex-direction: column;
        align-items: flex-start;
    }

    .left h1 {
        white-space: normal;
        font-size: 32px;
    }
}
.right input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
