body{
    margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Poppins', sans-serif;
    max-width: 100%;      /* Ensures the wrapper can expand up to the container's width */
    width: 100%; 
    box-sizing: border-box;
    overflow: hidden;
}


#container{
    position: relative;
    height: 700px;
    width: 100%;
    display: flex; /* for the contents inside like inputs and imgage*/
    border-radius: 10px;
    background: linear-gradient(110deg, #1a456d 70%, rgb(248, 248, 72) 30%);
}

#form{
    width: 100%;
    padding-top: 80px;
    padding-left: 50px;
    color: rgb(248, 248, 72);
}

input{
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    border-bottom: 5px solid #bfd2eb;  /* 2px border with solid black color */
    border-radius: 10px;
    caret-color: #bfd2eb;
}


input::placeholder {
    color: #bfd2eb;  /* Green placeholder color */
    font-style: italic;  /* Optional: make placeholder text italic */
}

input:focus {
    outline: none;  /* Removes the focus outline */
}

textarea{
    width: 500px;
    height: 100px;
    resize: none;
    background-color: transparent;
    border: none;
    font-size: 16px;
    border-bottom: 5px solid #bfd2eb;
    caret-color: #bfd2eb;
}

textarea::placeholder {
    color: #bfd2eb;  /* Green placeholder color */
    font-style: italic;  /* Optional: make placeholder text italic */
}

textarea:focus {
    outline: none;  /* Removes the focus outline */
}

button{
    border-radius: 10px;
    width: 100px;
    height: 50px;
    background-color: rgb(248, 248, 72);
    color: #1a456d;
    font-weight: bold;
}

img{
    position: relative;
    width: 100%;
    height: auto;
	left: -50px;
}

#wrapper{
             /* Makes the wrapper take up full width */
     /* Ensures padding doesn't affect the wrapper's width */
}

@media (max-width:1080px) {
    body{
    
  
    }

	#container {
        width: 100% !important;
        max-width: 1000px;
       
        overflow: hidden;
		flex-direction: column;
        height: auto;
        
	}
	#container #form {
		padding: 40px;
		box-sizing: border-box;
		width: 100% !important;
		height: auto;
		text-align: center;
		overflow: hidden; 
	}


    input{
        font-size: xx-small;
    }

    textarea{
        font-size: xx-small;
		height: auto;
		overflow: hidden; 
        width: 100%!important;
    }

	img {
        position: absolute;
        top: 194px;
        left: 0px;
		max-width: 100%;
        width: 200px;
        height: 300px;
        transform: rotate(90deg);
	}

    button{
        width: 100% !important;
		height: 25px;
        font-size: xx-small;
    }
	/*.details {
		width: 100% !important;
		height: auto;
		padding: 20px;
		
	}*/
	#container h1{
		max-width: 100%;
		margin-left: 0;
		
	}
}