*{
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: black;
    color: white;
    align-items: center;
}

header{
    background-color: deepskyblue;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
}

header button{
    position: absolute;
    right: 5%;
    top: 50%;
    translate: 0 -50%;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background-color: blue;
}

header button a{
    color: white;
    font-weight: bold;
    text-decoration: none;
}

form{
    display: flex;
    flex-direction: column;
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    gap: 20px;
    width: 50vw;
}

label{
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 5px;
}

input{
    padding: 7px;
    border-radius: 20px;
    border: 2px solid deepskyblue;
    background-color: #222;
    color: white;
}

.botones{
    display: flex;
    gap: 20px;
}

.botones button{
    padding: 9px 30px;
    border-radius: 20px;
    border: none;
    font-weight: bold;
}

.botones button:nth-child(1){
    background-color: rgb(153, 255, 0);
}

.botones button:nth-child(2){
    background-color: red;
}