*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background-color: #d0d0d0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.form-container{
    width: 360px;
    border-radius: 15px;
    background-color:#2c2f35;
    padding: 50px 30px;
    
}

.title{
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.container-form{
    margin-bottom: 20px;
    
    
}

input{
    width: 100%;
    height: 40px;
    outline: 0;
    margin-bottom: 20px;
    background: transparent;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid white;

}

input::placeholder{
    color: white;
    padding-left: 5px;
}

p{
    color: white;
    text-align: center;
}

a{
    color: aquamarine;
}

.botones{
    display: flex;
    justify-content: space-around;
    gap: 5px;
    
}

.registro, .login{
    width: 90%;
    height: 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background-color: aquamarine;
    font-size: 15px;
           
}

button:hover {
    opacity: 0.8;
}

.login{
    background-color: rgb(255, 255, 255);
}

