* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.newstudent-div-space {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
body {
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.main{
    display: flex;
    flex-direction: column;
    gap:40px;
    width: 100%;
}
.container {
    margin-top:40px;
    width: 90%;
}
.main-content{
    display: flex;
    column-gap:auto;
    height: 90%;
    width: 95%;
    gap:101px;
}
.left-section {
    flex: 1;
    width:50%;
}

.left-section .logo {
    width: 100px;
    margin-bottom: 20px;
}
.image-container {
    width:100%;
    height:650px;
}
.image-container img {
    width: 100%;
    height:650px;
    object-fit: cover;
}

.right-section {
    flex: 1;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    gap:49px;
}
.welcome-text{
    display:flex;
    flex-direction:column;
    gap:49px;
}
.welcome-text h1 {
    color: #992E00;
    font-family: DM Serif Display;
    font-size: 61px;
}
.loginform input::placeholder {
    opacity: 1;
}


.welcome-text h2 {
    color: #000;
    font-size: 31px;
    font-weight:bold;
    font-family:'Familjen Grotesk';
}

.loginform .inputgroup {
    margin-bottom: 40px;
}

.loginform label {
    display: block !important;
    font-size: 16px !important;
    color: #333 !important;
    border-bottom:none !important;
    font-family: 'Familjen Grotesk' !important;
}
.Ss-btn_txt{
    font-size: 20px;
    font-family: 'Familjen Grotesk', sans-serif;
    font-weight: 400;
    line-height: 17px;
    width: 100% !important;
    word-wrap: break-word;
    color:white;
}
.loginform input {
    width: 100% !important;
    border: none !important;
    margin-top:0px !important;
    border-bottom: 2px solid black !important;
    padding: 10px 5px !important;
    font-size: 16px !important;
    background-color: transparent !important;
    outline: none !important;
}

.login-btn {
    background-color: #8B3A2E;
    color: #fff !important;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}
.btn-search{
    margin-right: 50px;
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: -13px;
    color: black;
    background-color: transparent;
    pointer-events: painted;
}
.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-family: sans-serif;
}

.links a {
    color: #992E00;
    text-decoration: underline;
    font-size: 16px;
    padding: 2px;
}

button{
    background: #992E00;
    border-radius: 61px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /*display: inline-flex;*/
    border: 0;
    padding: var(--Numbers-7, 20px) var(--Numbers-9, 31px);
    color: white;
    cursor: pointer;
}
@media(max-width:1200px){
    .links{
        flex-direction:column;
        gap:20px;
    }
}
@media(max-width:1000px){
    .container{
        width:100%;
    }
    .newstudent-div-space{
        flex-direction: column;
    }
    .main-content{
        flex-direction: column;
        width: 100%;
    }
    .left-section{
        width: 100%;
        height: 50%;
    }
    .right-section{
        width:100%;
    }
    .image-container img{
        width:100%;
        height: 400px;
    }
    .image-container {
        width: 100%;
        height: 400px;
    }
}
@media(max-width:767px){
    .welcome-text h1 {
        font-size: 31px;
    }
    .welcome-text h2 {
        font-size: 20px;
    }
    .image-container img{
        width:100%;
        height: 200px !important;
    }
    .image-container {
        width: 100%;
        height: 200px !important;
    }
}
