@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    background-color: #FDFAF6;
}

.login-form {
    position: relative;
    min-height: 100vh;
    z-index: 0;
    background: #e0fbe8;
    padding: 40px;
    justify-content: center;
    display: grid;

    grid-template-rows: 1fr auto 1fr;
    align-items: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.login-form h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #272346;
}

.login-form h2 {
    line-height: 40px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    color: #272346;
    text-align: center;
}

.login-form .main {
    position: relative;
    display: flex;
    margin: 30px 0;
}

.content {
    flex-basis: 60%;
    padding: 4em 4em;
    background: #fff;
    box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.form-img {
    flex-basis: 50%;
    background: #f4f9fd;
    background-size: cover;
    padding: 40px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    align-items: center;
    display: flex;
}

.form-img img {
    max-width: 100%;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 25px;
    opacity: 0.6;
    text-align: center;
}

.message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    /* Tambahkan style lain sesuai kebutuhan */
}

.btn,
button,
input {
    border-radius: 35px;
}

.btn:hover,
button:hover {
    background: linear-gradient(15deg, #64A5A1, #4b8c88);
}

a {
    text-decoration: none;
}

.login-form form {
    margin: 30px 0;
}

.login-form input {
    outline: none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #999;
    text-align: left;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    background: #f7fafc;
}

.login-form input:focus {
    background: transparent;
    border: 1px solid #73C1C6;
}

.login-form button {
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: #73C1C6;
    border: none;
    padding: 14px 15px;
    font-weight: 600;
}

p.account a {
    color: #73C1C6;
}

p.account a:hover {
    text-decoration: underline;
}

@media(max-width: 736px) {
    .login-form .main {
        flex-direction: column;
    }

    .login-form form {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .form-img {
        border-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        order: 2;
    }

    .content {
        order: 1;
        border-radius: 0;
        border-top-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}