* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {

    background-color: #0F172A;
    font-family: 'Poppins', 'inter';

}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background-color: #1E293B;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 10px;

}

nav ul li {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
     flex-direction: column;
     gap:20px;
}
form{
    display: flex;
    justify-content: center;
    align-items: center;
     flex-direction: column;
     gap:20px;
}
.form-border{
    border:1px solid #ffffff5d;
    padding: 20px;
    border-radius: 12px;
    
}

input {
    width: 500px;
    height: 55px;
    border-radius: 12px;
    background-color: #0F172A;
    border:1px solid #ffffff62;
    color: #ffff;
    text-align: center;

}
input::placeholder{
    text-align: center;
    font-size: 1rem;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    line-height: 2.5;
}
input[type=submit]{
    padding: 20px 10px;
    background-color: #33c55f45;
    border:none;
    width:30vw;
    border-radius: 12px;
    color:white;
    font-weight: bold;
    cursor:pointer;
}
.account{
    text-align: center;
}
.Option{
    background-color:#8ce7fe6c;
    border:none;
    border-radius: 5px;
    padding:10px 15px;
    color: white;
    cursor: pointer;
}
#fout-email,#fout-naam,#fout-password,#fout-confrimpassword{
    font-family: "inter";
    font-weight: 500;
    color: rgb(255, 133, 133);
}
#fout{
    font-family: "inter";
    font-weight: 500;
    color: rgb(255, 133, 133);
}
@media screen and (max-width:600px) {
    .form-container{
        width: 100%;
        height: 100vh;
       
}
.form-wrapper{
    width: 90%;
    height: auto;
     padding: 20px;
}
input{
    width: 100%;
}
input::placeholder{
    font-size: 0.8rem;
}
}