@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@600&family=Roboto:wght@500&display=swap');
body{
    background-color:#00142F;
    color:white;
    font-family:Lexend;
    padding-top: 50px;
    overflow-x: hidden;
}

input{
    background-color:#C91F45;
    outline:none;
    color:white;
    font-family:Lexend;
    border:none;
    border-radius: 4px;
    padding:10px;
}

input{
    margin-bottom: 20px;
    border: none;
    transition: border 100ms ease 0s;
}

input:focus{
    border: 2px solid orange;
}

button{
    background-color:#C91F45;
    padding: 15px;
    outline:none;
    color:white;
    font-family:Lexend;
    border:none;
    border-radius: 20px;
    width: 200px;
    cursor: pointer;
}

input[type="submit"]{
    cursor: pointer;
    transition: opacity 100ms;
}

input[type="submit"]:hover{
    opacity: .8;
}

input::placeholder{
    color:rgba(255, 255, 255, 0.582);
}

a{
    text-decoration: none;
    color: currentColor;
}