@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
    margin: 0px !important;
     font-family: "Inter", sans-serif;
    padding: 0;
}
.form-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url(../assets/background.png);
    position: relative;
}
.form-section img{
    position: absolute;
    bottom: 0%;
    left: 0;
  
}
.container {
    width: 100%;
    max-width: 380px;
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}
h2 {
    margin-bottom: 10px;
    font-size: 22px;
}
p {
    color: #666;
    margin-bottom: 25px;
}
input {
    width: 90%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
button {
    width: 90%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #333;
    background: #D53737;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
button:hover {
    background: #555;
}
.link {
    margin-top: 15px;
    display: block;
    color: #333;
    text-decoration: none;
}
.error {
    color: #c62828;
    margin-bottom: 15px;
}
.link span{
    padding: 3px 5px;
    color: #c62828;
    text-decoration: underline;
}
@media screen and (max-width:1192px) {
    .form-section img{
      width: 340px;
    }
}
@media screen and (max-width:990px) {
    .form-section img{
      width: 200px;
    }
}
@media screen and (max-width:600px) {
    .form-section img{
      width: 170px;
    }
}