* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}

a {
    text-decoration: none;
    color: #C06C84;
    transition: all 300ms;
}

a:hover {
    opacity: .5;
}

.container {
    font-size: 1rem;
    width: 100%;
    height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/foto1web.webp');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: bottom right;
    
}

/* Card */
.card {
    width: 100%;
    max-width: 300px;
    height: 370px;
    margin: 0 auto 0 auto;
    padding: 0 1rem 1rem;
    color: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 24px;
    opacity: 0;
    /* background-image: url('https://images.pexels.com/photos/356056/pexels-photo-356056.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260'); */
    /* background: linear-gradient(70deg, #717171, #0e0e0e, #fbffff) ; */
    background: linear-gradient(70deg, #fbffff, #fbffff, #fbffff) ; 
    box-shadow: inset 4px 4px 5px rgba(255,255,255,0.3), 
     inset -4px -4px 5px rgba(0, 0, 0, 0.1), 
     10px 40px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

/* Header */
.card__header {
    padding-bottom: 1rem;
}

.card__header h2.title {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .2rem;
}

.card__header h2.title span {
    color: #C06C84;
}

/* Body */
.card__body {
    width: 100%;
    padding-bottom: 1rem;
}

/* Label */
label {
    display: block;
    margin-bottom: .5rem;
    /* font-size: .75em; */
    font-size: 1em;
    letter-spacing: .2rem;
    text-transform: uppercase;
    color: white;
}

/* Input */
input {
    display: block;
    margin-bottom: 1.25rem;
    /* padding-left: .8rem; */
    width: 100%;
    height: 2.75rem;
    font-size: 1rem;
    color: black;
    /* background-color: white; */
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid white;
    border-radius: 4px;
    outline: none;
    transition: background-color .5s;
    box-shadow: -10px -10px 10px rgba(255,255,255,0.2),
	            15px 15px 15px rgba(235, 228, 228, 0.1),
	            inset -10px -10px 10px rgba(245, 241, 241, 0.2);
	            /* inset 15px 15px 15px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

input::placeholder, input::-webkit-input-placeholder  {
    color: rgba(255, 255, 255, .5);
    
}

input:hover,
input:focus {
    background-color: rgba(255, 255, 255, .5);
    
}

/* Footer */
.card__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Button */
.btn_sign-in-up {
    min-width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #bd362f;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: 2rem;
    outline: none;
    background-color: #bd362f;
    transition: all .5s;
    box-shadow: inset 4px 4px 5px #bd362f,
    inset -4px -4px 5px #bd362f,
    10px 40px 40px rgba(0,0,0,0.1);
}

.btn_sign-in-up:hover {
    /* background-color: rgba(255, 255, 255, .2); */
    background-color: #bd362fab;
    /* border: 1px solid rgba(255, 255, 255, 1); */
    color: rgb(255, 255, 255);
}

.card__footer p {
    margin-bottom: 0;
    font-size: .8rem;
}

/* Responsive */
@media (max-width: 530px) {
    .card {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}