* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color-scheme:dark;
}

body {
    /* color: white;
    background-color: #111; */
    height: 100%;
    width: 100%;
}
.cont{
    border-radius: 1vw;
    padding: 2vw;
    box-shadow: 0 0 5px 5px white;
}
.outer {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 80vw;
    border-left: 2px solid white;
    border-right: 2px solid white;
    
    /* display: flex; */
}
.head{
    border-bottom: 3px solid white;
    margin-bottom: 2vw
}
.outer .header h1 {
    margin-top: 10px;
    text-align: center;
    /* border-bottom: 2px solid ; */
    display: flex;
    justify-content: center;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .header hr {
    height: 1vh;
    width: 30px;
    background-color: rgb(0, 251, 255);
} */

.head {
    font-size: 7vw;
    /* border-bottom: 10px solid blue; */
}

form {
    display: flex;
    flex-direction: column;
}

form input,button {
    /* cursor: text; */
    font-size: 2.5vw;
    text-align: center;
    height: 8vh;
    width: 20vw;
    border-radius: 1vw;
}

button {
    margin-left: 1.1vw;
    border-radius: 1.2vw;
    cursor: pointer;
    border: none;
    height: 7vh;
    width: 18vw;
    transition: 0.6s;
    font-size: 2vw;
    box-shadow: 0 0 20px 5px greenyellow;
}
button:hover{
    box-shadow: none;
    transform: scale(1.1);
    border-bottom: 0.7vw solid tomato;
}
button a{
    text-decoration: none;
}
.main {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}