body{
    background: url('sam.jpg');
    background-size: cover;
    background-position:center;
    display: flex;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}
.login{
    background: rgb(15, 14, 14, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 300px;
    height: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
}
h2{
    color: rgb(17, 194, 17);
    font-weight: 800;
    font-size: xx-large;
}
input{
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: none;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.63);
    color: rgb(248, 242, 242);
}
input[type="text"]::placeholder{
    color: rgb(190, 169, 169);

}
.parrafos{
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: medium;
    margin-bottom: 15px;
}
#signup{
    color: rgb(30, 238, 30);
    cursor: pointer;
}
#boton{
    padding: 10px;
    border: none;
    border-radius: none;
    background-color: rgb(55, 240, 55);
    color: black;
    font-weight: 600;
    font-size: large;
    cursor: pointer;
    text-align: center;
}
.me{
    font-size: 20px;
    color: rgb(143, 230, 12);
}