* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
    font-family: "Roboto", sans-serif;
    width: 100%;
    height: 100vh;
    background-image: url(../imagenes/fonfo-form.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    width: 370px;
    height: 460px;
    background: linear-gradient(#ffffff34, #ffffff27);
    backdrop-filter: blur(7px);
    border: 1px solid #ffffff83;
    box-shadow: 0 8px 32px #0000008a;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

form h1 {
    margin-bottom: 10px;
    color: rgb(240, 63, 10);
}

.user1 {
    position: relative;
    margin-bottom: 12px;
}

.user2 {
    position: relative;
    margin-bottom: 12px;
}

.user3 {
    position: relative;
    margin-bottom: 12px;
}

.user4 {
    position: relative;
    margin-bottom: 12px;
}

form input {
    width: 250px;
    height: 40px;
    outline: none;
    background-color: transparent;
    border: 1px solid #ffffffac;
    border-radius: 30px;
    margin-top: 20px;
    padding: 10px;
}

input::placeholder {
    color: #ffffffb9;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

button {
    outline: none;
    border: none;
    background-color: rgb(10, 24, 61);
    color: #fff;
    font-size: 0.8rem;
    padding: 10px 105px;
    border-radius: 30px;
    margin: 15px 0px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
    letter-spacing: 0.3px;
}

button:hover {
    background-color: rgb(44, 21, 172);
    box-shadow: 0 4px 8px rgba(25, 0, 255, 0.705);
}

p {
    width: 250px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

a:hover {
    color: rgb(251, 255, 0);
}