::selection {
    color: white;
    background-color: black;
}

body {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgb(150,150,168);
    background: linear-gradient(90deg, rgba(150,150,168,1) 0%, rgba(255,255,255,1) 56%);     
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    width: 100%;
    height: 90vh;
    margin-top: 10rem;
    margin-left:40%;
}

h2 {
    font-weight: 400;
    margin-left: 3rem;
}
/* 
form {
    border: 1px solid black;
    width: fit-content;
    padding: 7%;
    background-color: #282828;
} */

.form-control {
    display: flex;  
    flex-direction: column;
    justify-content: center;    
    width: 15rem;
    align-content: center;
    margin: 1rem 0;
}

label, input , button{
    font-size: 18px; 
    font-weight: 200;      
}

input, button {
    padding: 5px 15px;
    border: 1px solid black;
    border-radius: 4px;
}

button{
    border-radius: 50px;
    border: none;
    outline: none;
    background: black;
    color: white;
    transition: 0.2s ease-in;
    border: 1px solid black;
}

button:hover {
    background: white;
    border: 1px solid black;
    color: black;
}

.help {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.help a{
    color: rgb(37, 37, 37);

}

input:focus, input:active {
    outline: none;
}

@media screen and (max-width:500px){
    body {
        height: 90vh;
    }
    .container {
        margin: 54% 15%;
        height: 90vh;
    }
}
