* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f9d54d;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

.myaccount-login-wrapper {
    width: 100%;
    height: 100vh;
}
.myaccount-login {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.myaccount-login-col-1 {
    flex-basis: 60%;
    height: 100vh;
    text-align: center;
}
.myaccount-login-col-1 .logo {
    display: block;
    width: 20%;
    margin: auto;
    margin-top: 300px;
}
.myaccount-login-col-1 .mobile-logo {
    display: none;
    width: 30%;
    margin: auto;
    margin-top: 100px;
}
.myaccount-login-col-2 {
    flex-basis: 40%;
    height: 100vh;
    background-color: #fcfcfc;
    color: #000000;
    padding: 50px;
}
.myaccount-login-col-2 h1 {
    font-size: 1.1em;
    font-weight: 600;
    color: #000000;
    margin-top: 150px;
    margin-bottom: 20px;
}
.myaccount-login-col-2 p {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}
.myaccount-login-col-2 a {
    color: #4daa5f;
    text-decoration: underline;
}
.myaccount-login-col-2 .myaccount-login-form {
    input[type="email"] {
        background-color: #ffffff;
        padding: 12px;
        border-radius: 8px;
        bordeR: 1px solid #c4c4c4;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 30px;
    }
    .input[type="email"]::placeholder {
        font-size: 18px;
        font-weight: 400;
        color: #868686;
    }
    input[type="password"] {
        background-color: #ffffff;
        padding: 12px;
        border-radius: 8px;
        bordeR: 1px solid #c4c4c4;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 30px;
    }
    .input[type="password"]::placeholder {
        font-size: 18px;
        font-weight: 400;
        color: #868686;
    }
    .btn {
        background-color: #4daa5f;
        padding: 12px;
        border-radius: 8px;
        border: none;
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        width: 100%;
        cursor: pointer;
    }
}
@media (max-width: 600px) {
    body {
        background-color: #fcfcfc;
    }
    .myaccount-login {
        flex-direction: column;
    }
    .myaccount-login-col-1 {
        height: 100vh;
        background-color: #fcfcfc;
    }
    .myaccount-login-col-1 .logo {
            display: none;
    }
    .myaccount-login-col-1 .mobile-logo {
            display: block;
    }
}