@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffdea0;
    min-height: 500px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;  
}

.banner-container{
    background-color: #fff;
    height: 550px;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);  
    overflow: hidden;
    position: relative;
}


.body-container { 
    background-color: white;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

.form-container {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.form-container img {
    width: 50px;
    height: 50px;
    top: 20px;
    margin: 5px;
    position: static;
}

.input-group {
   margin: 15px 0;
   text-align: left;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

h2 {
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group input {
    border-style: double;
    line-height: 30px;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3 ease;
    width: 100%;
    background-color: #f8f9fa;
}

.image-container{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.btn {
      display: inline-block;
      width: 200px;
      height: 50px;
      background-color: red;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-size: 16px;
      transition: background-color 0.3s;
    }


.btn:hover {
      background-color: #2980b9;
      cursor: pointer;
}

@media (max-width:768px){
    body {
        padding: 10px;
    }

    .banner-container {
        width: 100%;
        height: auto;
        min-height: 600px;
    }

    .body-container {
        flex-direction: column-reverse;
    }

    .image-container, .form-container {
        width: 100%;
        height: 50%;
    }

    .image-container {
        height: 250px;
    }
}




