*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}
html, body{
    height: 100%;
    width: 100%;
    min-width: 380px;
}
.loginPage{
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: url(../images/loginBg.png);
    background-size: cover;
}

.login-container {
    /* position: absolute; */

    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin-left: 11%;
}

.login-box {
    padding: 40px;
    border-radius: 10px;
    max-width: 550px;
    width: 100%;
    margin-top: 40px;
}

.login-box  h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    
}
.login-box  h2 span{
    font-family: "kaisei Decol", serif;
    font-weight: 200;
}

p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.8;
    
}

form {
    display: flex;
    flex-direction: column;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    max-width: 420px;
    height: 50px;
}

input::placeholder {
    color: #a9a9a9;
}

.sub input[type="email"]{
    margin-bottom: 0px !important;
}

.forgot-password {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.8;
}

.login-btn {
    background-color: #DD9F44;
    color: white;
    border: none;
    width: 250px;
    height: 58px;
    padding: 12px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #DD9F44;
    transform: scale(0.97);
}

.signup-text {
    font-size: 18px;
    margin-top: 20px;
    color: #ffffff;
    font-weight: 400;
   
}

.signup-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}


.footer {

    min-height: 30vh;

    width: 100%;

    display: flex;

    justify-content: center;

    background-color: #303030;

    padding: 60px 0px;

    position: relative;

    /*padding-top:40px;*/

}



.footer-cont {

    height: 100%;

    width: 70%;

    display: flex;

    flex-direction: column;

    align-items: center;

}



.footer-cont h2 {

    color: #ffffff;

    font-size: 24px;

    font-weight: 600 !important;

    line-height: 40px;

    margin-bottom: 10px;

}



.footer-cont span {

    font-family: "kaisei Decol", serif;

    font-weight: 200;

}



.footer-cont p {

    width: 35%;

    text-align: center;

    font-size: 14px;

    color: white;

    font-weight: 200;

}



.sub {

    width: 35vw;

    min-width: 290px;

    border: 1.5px solid rgb(179, 179, 179);

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 50px;

    margin-bottom: 60px;

}



.sub input {

    background: transparent;

    border: none;

    padding-left: 20px;

    width: 100%;

}



.sub button {

    padding: 15px 40px;

    font-size: 14px;

    text-transform: uppercase;

    color: white;

    background-color: #DD9F44;

    border-radius: 30px;

    white-space: nowrap;

}



.footer .options {

    min-height: 20vh;

    width: 100%;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

}



.footerBox {

    width: 20%;

    min-width: 180px;

    height: 200px;

    flex-wrap: wrap;

    flex-shrink: 0;

    overflow: hidden;

}



.footerBox h4 {

    color: #DD9F44;

    font-size: 16px;

    margin-bottom: 25px;

}



.footerBox li {

    font-size: 12px;

    color: white;

    font-weight: 200;

    margin-bottom: 5px;

    transition: all ease-in-out 0.2s;

    cursor: pointer;

}



.footer li:hover {

    color: #DD9F44;

}



.footerBox:nth-last-child(1) p {

    width: 80%;

    text-align: start;

    line-height: 18px;

}



.footer-bottom {

    min-height: 8vh;

    width: 75%;

    border-top: 1.5px solid rgba(255, 255, 255, 0.377);

    position: absolute;

    bottom: 0;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    align-items: center;

}



.footer-bottom p {

    text-align: start;

}



.footer-bottom .social img {

    height: 20px;

    margin-left: 8px;

}



@media(max-width: 480px) {
    .login-container {
        margin-left:0%;
    }
}

@media(min-width: 481px) and (max-width:768px){
    .login-container {
        margin-left:6%;
    }
}
@media(min-width: 769px) and (max-width:1024px){
    .login-container {
        margin-left:8%;
    }
}
@media(min-width: 1025px) and (max-width:1270px){
    .login-container {
        margin-left:10%;
    }
}


