@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
    font-family: Poppins,Segoe UI, sans-serif;
    text-align: center;
}

.logo{
    font-size: 30px; 
    font-weight: 800;
    display: flex;
    align-items: center;
    padding: 15px 10%;
    cursor:pointer;
    color: #edf0f1;
    text-decoration: none;
}
body {
    min-height: 100vh;
}
.wrapper {
    height: 80vh;
    padding: 10px;
    border-radius: 0 20px 20px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #edf0f1;
}
form {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
form > div {
    width: 100%;
    display: flex;
    justify-content: center;
}
form label {
    flex-shrink: 0;
    height: 50px;
    width: 50px;
    fill: #edf0f1;
    border-radius: 10px 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #edf0f1;
}
p {
    color: #edf0f1;
}
form input {
    box-sizing: border-box;
    flex-grow: 1;
    min-width: 0;
    height: 50px;
    padding: 1em;
    font: inherit;
    border-radius: 10px 10px 10px 10px;
    background: #37383f;
    transition: 150ms ease;
    border: 3px solid #37383f;
    width: 300px;
}
form input:hover {
    border-color: rgba(0,136,169,1);
}
form input:focus {
    outline: none;
    border-color: rgba(0,136,169,1);
}
form button {
    margin-top:10px;
    border: none;
    border-radius: 1000px;
    padding: 0.85em 4em;
    background-color:rgba(0,136,169,1);
    color: #edf0f1;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 150ms ease;
}
form button:hover {
    background-color: rgba(0,136,169,0.8);
}
form button:focus {
    outline:none;
    background-color: rgba(0,136,169,1);
}
.incorrect input{
    border-color: red;
}
#error-message {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
