
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Lexend", sans-serif;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.travelLogo img{
    width: 100%;
    height: auto;
    max-width: 48px;
}
.travelWorldContainer{
    background-image: url(../images/travelLoginBg.webp);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.travelLogo img{
    max-width: 204px;
    width: 100%;
    height: auto;
    margin-bottom: 52px;
}
.login_container {
    background: white;
    padding: 64px 54px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 540px;
    width: 100%;
    position: absolute;
    right: 110px;
    top: 50%;
    transform: translateY(-50%);
}

.travelLogoTitle h2{
    font-family: IBM Plex Sans;
    font-weight: 500;
    font-size: 24.35px;
    color: rgba(0, 0, 0, 0.8);
}
.travelLogoTitle p{
    font-weight: 300;
    font-size: 12px;
    color: rgba(45, 45, 45, 1);
}

.travelSignAccount p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(45, 45, 45, 1);
    padding-bottom: 12px;
}
.travelInpts input{
    max-width: 432px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    padding: 0 16px;
    border-radius: 4px;
    border: .5px solid #A3A3A3;
}
.forgotTitle a{
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #FC3F1D;
    text-align: right;
    text-decoration: none;
    padding-top: 12px;
}
.sign_in_btn {
    outline: none;
    border: none;
    max-width: 432px;
    width: 100%;
    border-radius: 10px;
    padding: 0 16px;
    height: 56px;
    font-weight: 400;
    font-size: 16px;
    background: rgba(15, 64, 135, 1);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}
.sign_in_btn:hover {
    background-color: #1f1c63;
}
.submitBtn{
    margin-top: 42px;
}
.signUpTitle,
.numEmail_inp{
    margin-bottom: 32px;
}
.signUpTitle h2{
    font-weight: 400;
    font-size: 24px;
    color: rgba(45, 45, 45, 1);
}
.travelInpts input::placeholder {
    font-weight: 300;
    font-size: 14px;
    color: rgba(177, 177, 177, 1);
}

.travelInpts input::-ms-input-placeholder { 
    font-weight: 300;
    font-size: 14px;
    color: rgba(177, 177, 177, 1);
}