*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f4f4f4;
}

.main-container{
width:100%;
height:100vh;
background:linear-gradient(180deg,#ffffff,#ffe6cc);
position:relative;
overflow:hidden;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
}

.logo-left{
display:flex;
align-items:center;
gap:10px;
}

.logo-left img{
width:60px;
}

.logo-left h3{
color:#d40000;
font-weight:600;
}

.logo-left p{
font-size:12px;
}

.logo-right h2{
color:#8b0000;
font-weight:600;
}

/* CONTENT */

.content{
display:flex;
align-items:center;
justify-content:space-between;
padding:40px 80px;
}

/* LEFT */

.left-section{
max-width:420px;
}

.left-section h1{
color:#8b0000;
font-size:36px;
margin-bottom:10px;
}

.subtitle{
color:#c28030;
margin-bottom:30px;
}

.features{
display:flex;
flex-wrap:wrap;
gap:20px;
}

.feature-box{
background:#fff;
padding:15px;
border-radius:10px;
width:150px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
text-align:center;
}

.feature-box .icon{
font-size:15px;
margin-bottom:8px;
}

/* IMAGE */

.image-section img{
width:350px;
border-radius:20px;
}

/* LOGIN */

.login-section{
width:320px;
}

.login-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.login-logo{
width:160px;
display:block;
margin:auto;
margin-bottom:15px;
}

.login-card h3{
text-align:center;
margin-bottom:20px;
}

.login-card label{
font-size:14px;
margin-top:10px;
display:block;
}

.login-card input{
width:100%;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:5px;
}

.login-btn{
width:50%;
padding:5px;
margin-top:15px;
margin-left: 25%;
background:#b30000;
border:none;
color:white;
font-size:14px;
border-radius:6px;
cursor:pointer;
}

.login-options{
display:flex;
justify-content:space-between;
margin-top:15px;
}

.light-btn{
background:#f2e6d9;
border:none;
padding:8px 12px;
border-radius:20px;
cursor:pointer;
font-size:12px;
}

/* ORANGE BACKGROUND WAVES */

.main-container::before{
content:'';
position:absolute;
bottom:-200px;
left:-200px;
width:700px;
height:700px;
background:radial-gradient(circle,#ff8c00,#ff5e00);
border-radius:50%;
z-index:-1;
}

.main-container::after{
content:'';
position:absolute;
bottom:-250px;
right:-200px;
width:700px;
height:700px;
background:radial-gradient(circle,#ffa733,#ff6a00);
border-radius:50%;
z-index:-1;
}

.footer {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    padding: 12px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-center a,
.footer-right a {
    text-decoration: none;
    color: #8b0000;
    margin: 0 0px;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover Effect */

.footer-center a:hover,
.footer-right a:hover {
    text-decoration: underline;
}

.footer-center {
    text-align: center;
}
/* ===============================
TABLET DEVICES (992px)
================================*/

@media (max-width: 992px) {

    .content {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 40px;
    }

    .left-section {
        display: none;
    }

    .features {
        justify-content: center;
    }

    .image-section img {
        width: 300px;
    }

    .login-section {
        width: 100%;
        max-width: 400px;
    }

    .header {
        padding: 15px 30px;
    }

    .logo-right h2 {
        font-size: 22px;
    }

}

/* ===============================
MOBILE DEVICES (768px)
================================*/

@media (max-width:768px) {

    .header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-left {
        justify-content: center;
    }

    .content {
        padding: 20px;
    }

    .left-section h1 {
        font-size: 28px;
    }

    .features {
        display: none;
    }

    .feature-box {
        width: 130px;
        padding: 12px;
    }

    .image-section img {
        display: none;
    }

    .login-card {
        padding: 25px;
    }

    .login-btn {
        width: 100%;
        margin-left: 0;
    }

}

/* ===============================
SMALL MOBILE DEVICES (480px)
================================*/

@media (max-width:480px) {

    .header {
        padding: 15px;
    }

    /* .left-section h1 {
        font-size: 22px;
    } */
    .left-section {
        display: none;
    }

    .subtitle {
        font-size: 14px;
    }

    .feature-box {
        width: 100%;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        display: none;
    }

    .image-section img {
        width: 200px;
    }

    .login-section {
        width: 100%;
    }

    .login-card {
        padding: 20px;
    }

    .login-logo {
        width: 120px;
    }

    .footer-container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 10px;
    }

}