/* BODY */

body {
    background-color: #fff2e6;
    min-height: 100vh;
}



/* MAIN SECTION */

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
}

/* LOGIN CONTAINER */

.login-container {
    width: 800px;
    height: 450px;
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* LEFT SECTION */

.left-section {
    width: 50%;
    padding: 50px 40px;
}

.login-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: rgb(254 83 115);
}

.input-box {
    margin-bottom: 10px;
}

.input-box input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background-color: #f1f3f6;
    font-size: 16px;
    outline: none;
}

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.forgot-password {
    text-decoration: none;
    color: #3b4df5;
    font-size: 14px;
    font-weight: bold;
}

.login-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff5c8a, #ff7a7a);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #e62287;
    transform: translateY(-2px);
}

.signup-text {
    text-align: center;
    margin-top: 25px;
    color: #555;
}

.signup-text a {
    color: #3b4df5;
    text-decoration: none;
    font-weight: bold;
}

/* RIGHT SECTION */

.right-section {
    width: 50%;
    background-color: #f6f8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.right-img {
    width: 300px;
    margin-bottom: 25px;
}

.right-heading {
    font-size: 35px;
    color: rgb(254 83 115);
    margin-bottom: 15px;
}

.right-description {
    color: #666;
    line-height: 28px;
    font-size: 16px;
}

@media screen and (min-width: 300px) and (max-width: 768px) {
   
    .right-section {
        display: none;
    }

    .login-container {
        width: 100%;
        height: auto;
    }

    .left-section {
        width: 100%;
        padding: 30px 20px;
    }

    .main-container {
        padding: 20px 10px;
    }

    .login-title {
        font-size: 30px;
    }

    .input-box input {
        padding: 14px;
        font-size: 15px;
        width: 200px;
    }

    .login-btn {
        padding: 14px;
        font-size: 16px;
    }

    .options-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}