* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

a {
    text-decoration: none;
    font-weight: 500;
    color: #0080FF;
}

form {
    width: 650px;
    height: 386px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form > h2 {
    margin-bottom: 15px;
}

form > button {
    height: 45px;
    width: 127px;
    background-color: #0080FF;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

form > button:hover {
    background-color: #006AFF;
}

form > button:active {
    background-color: #0080FF;
}

form > a::before {
    content: "¿No tienes cuenta?";
    color: #444E5E;
    font-weight: normal;
    margin-right: 10px;
}

.input {
    height: 64px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: #D8DEE6;
}

.input > label {
    position: absolute;
    font-size: 13px;
    font-weight: 500;
    top: 12px;
    left: 16px;
}

.input input {
    height: 100%;
    border-radius: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 20px;
    font-size: 15px;
    border: none;
}

.input input:active, .input input:focus {
    outline-width: 2px;
    outline-color: #006AFF;
}