* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;

}

/*======================
CONTAINER
======================*/

.container {

    width: 1200px;
    max-width: 100%;
    min-height: 700px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: white;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

/*======================
LEFT
======================*/

.left {

    background: linear-gradient(135deg, #111, #2b2b2b);

    color: white;

    padding: 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    overflow: hidden;

}

.left::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255, 191, 0, .12);

    border-radius: 50%;

    right: -220px;
    top: -180px;

}

.left::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(255, 255, 255, .05);

    border-radius: 50%;

    bottom: -150px;
    left: -120px;

}

.logo {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 30px;

    position: relative;

    z-index: 2;

}

.logo span {

    color: #ffbf00;

}

.left h1 {

    font-size: 52px;

    line-height: 65px;

    margin-bottom: 25px;

    position: relative;

    z-index: 2;

}

.left p {

    line-height: 32px;

    font-size: 17px;

    color: #ddd;

    margin-bottom: 40px;

    position: relative;

    z-index: 2;

}

.features {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.features div {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 17px;

}

.features i {

    color: #ffbf00;

    font-size: 22px;

}

/*======================
RIGHT
======================*/

.right {

    padding: 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.small-title {

    color: #888;

    margin-bottom: 10px;

    font-weight: 500;

}

.right h2 {

    font-size: 42px;

    margin-bottom: 15px;

    color: #111;

}

.right p {

    color: #777;

    margin-bottom: 35px;

}

/*======================
INPUT
======================*/

.input-box {

    position: relative;

    margin-bottom: 28px;

}

.input-box input {

    width: 100%;

    height: 60px;

    border: 2px solid #ddd;

    border-radius: 15px;

    padding: 0 20px 0 55px;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.input-box input:focus {

    border-color: #ffbf00;

}

.input-box i {

    position: absolute;

    left: 20px;

    top: 22px;

    color: #888;

}

.input-box label {

    position: absolute;

    left: 55px;

    top: 19px;

    background: white;

    padding: 0 6px;

    transition: .3s;

    color: #888;

    pointer-events: none;

}

.input-box input:focus+label,
.input-box input:valid+label {

    top: -11px;

    font-size: 13px;

    color: #ffbf00;

}

/*======================
OPTIONS
======================*/

.options {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

    font-size: 15px;

}

.options a {

    text-decoration: none;

    color: #ffbf00;

    font-weight: 600;

}

/*======================
BUTTON
======================*/

.login-btn {

    width: 100%;

    height: 60px;

    border: none;

    background: #111;

    color: white;

    font-size: 17px;

    font-weight: 600;

    border-radius: 15px;

    cursor: pointer;

    transition: .3s;

}

.login-btn:hover {

    background: #ffbf00;

    color: #111;

}

.bottom {

    margin-top: 35px;

    text-align: center;

}

.bottom a {

    color: #ffbf00;

    font-weight: 600;

    text-decoration: none;

}

/*==========================
PASSWORD ICON
==========================*/

.toggle-password {

    position: absolute;

    right: 70px;

    top: 0px;

    cursor: pointer;

    color: #888;

}

/*==========================
BUTTON LOADER
==========================*/

.loader {

    width: 25px;

    height: 25px;

    border: 3px solid rgba(255, 255, 255, .3);

    border-top: 3px solid white;

    border-radius: 50%;

    display: none;

    animation: spin 1s linear infinite;

    margin: auto;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

/*==========================
DIVIDER
==========================*/

.divider {

    display: flex;

    align-items: center;

    margin: 35px 0;

}

.divider::before,

.divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #ddd;

}

.divider span {

    padding: 0 15px;

    color: #777;

}

/*==========================
SOCIAL
==========================*/

.social-login {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.social-login button {

    height: 55px;

    border: none;

    border-radius: 12px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}

.google {

    background: #fff;

    border: 2px solid #ddd !important;

}

.facebook {

    background: #1877F2;

    color: white;

}

.social-login button:hover {

    transform: translateY(-3px);

}

/*==========================
TOAST
==========================*/

#toast {

    position: fixed;

    right: 30px;

    top: 30px;

    background: #111;

    color: white;

    padding: 18px 30px;

    border-radius: 12px;

    display: flex;

    gap: 15px;

    align-items: center;

    transform: translateX(500px);

    transition: .5s;

    z-index: 99999;

}

#toast.show {

    transform: translateX(0);

}

/*==========================
BACKGROUND
==========================*/

.shape {

    position: fixed;

    border-radius: 50%;

    z-index: -1;

    animation: float 8s infinite ease-in-out;

}

.one {

    width: 250px;

    height: 250px;

    background: rgba(255, 191, 0, .08);

    left: -80px;

    top: -80px;

}

.two {

    width: 180px;

    height: 180px;

    background: rgba(0, 0, 0, .04);

    right: -50px;

    top: 120px;

}

.three {

    width: 300px;

    height: 300px;

    background: rgba(255, 191, 0, .06);

    bottom: -150px;

    right: -80px;

}

@keyframes float {

    50% {

        transform: translateY(-25px);

    }

}

/*======================
RESPONSIVE
======================*/

@media(max-width:950px) {

    .container {

        grid-template-columns: 1fr;

    }

    .left {

        display: none;

    }

    .right {

        padding: 50px 35px;

    }

}

@media(max-width:500px) {

    body {

        padding: 15px;

    }

    .right {

        padding: 40px 25px;

    }

    .right h2 {

        font-size: 34px;

    }

    .options {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

}