@import url("https://font.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap");


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgba(97, 2, 2, 0.774);
}

.wrapper {
    width: 420px ;
    background: rgba(71, 11, 11, 0.226);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px 40px;

}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50 px;
    margin: 30px 0;
}
.input-box input{
    width:100%;
    height: 10px;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgb(61, 0, 0);
    border-radius: 40px;
    font-size: 16px;
    padding: 20px 45px 20px 20px;
    color: #fff;
}
.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

}

.input-box input::placeholder {
    color: #fff;
    font-size: 16px;
}

.wrapper .button{
    width: 100%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    font-size: 16px;
    color: rgb(83, 83, 83);
    font-weight: 600;
}
.wrapper .password-modifier{
    font-size: 14px;
    text-align: center;
    position: relative;
    height: 10px;
    padding: 5px;
    margin: 5px;
    color: #fff;
    
    


}
.wrapper .button-access{
    position: relative;
    margin:  5px 0;
    width: 100%;
    height: 35px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    font-size: 16px;
    color: rgb(65, 65, 65);
    font-weight: 600;
}
 
.site-page{
    background: #fff;
    
}
nav{
    font-family: Arial, Helvetica, sans-serif;

}
ul{
    display: flex;
    color: #000000;
    justify-content: space-between;
    list-style-type: none;
}