
*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body{
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
}

.wrapper-div{
    background-color: rgba(0, 0, 0, 0.482);
    height: 100%;
}

.logo-containar{
    padding-top: 25px;
    padding-left: 150px;
    /* border: 2px solid salmon; */
}

.logo-containar img{
    width: 172px;
}

.main-containar{
    /* border: 2px solid black; */
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    padding: 50px 60px;
    padding-bottom: 130px;
    border: 3px solid black;
    background-color: rgba(0, 0, 0, 0.752);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 450px;
}

.middle-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

p{
    color: gray;
}

a{
    color: white;
}

input{
    border-radius: 5px;
}

label{
    color: white;
}

button{
    width: 100%;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: rgb(78, 75, 75);
    color: white;
}

.orlabel{
    color: gray;
}

input[type="checkbox"]{
    accent-color: white;
}

.signin-btn{
    background-color: red;
    color: white;
    outline: none;
    border: none;
}

input[type="text"],input[type="password"]{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 19px;
    padding-bottom: 19px;
    background-color: transparent;
    outline: none;
    border: 0.1px solid white;
    color: white;
}

input::placeholder{
    color: white;
}

h1,h4{
    color: white;
}

.signup{
    display: flex;
    gap: 10px;
}

.signup a{
    text-decoration: none;
}

.protected-statement p{
    font-size: 0.8rem;
}

.learnmore a{
    color: rgb(94, 94, 236);
    font-size: 0.8rem;
}

.footer-section{
    background-color: rgb(28, 27, 27);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 160px;
}

#language-option{
    background-color: rgba(28, 27, 27, 0.9);
    color: white;
    padding: 8px 30px;
    border-radius: 30px;
    appearance: none;
}

.imglanguage{
    position: absolute;
    bottom: -27.1%;
    left: 11%;
}

.imagedown{
    position: absolute;
    bottom: -27.2%;
    left: 16%;
}

.footer-section p{
    text-align: left;
}

.footer-links{
    display: flex;
    gap: 100px;
}

.footer-links ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links ul li{
    list-style: none;
}

.footer-links ul li a{
    text-decoration: underline;
    color: gray;
    font-weight: 500;
}

#footer-link{
    text-decoration: none;
    color: gray;
}

#check{
    width: 15px;
    height: 15px;
}