

.container{
    position: relative;
    width: 500px;
    height: auto;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    color: #FFFFFF;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

/* .container{
    position: relative;
    width: 500px;
    height: auto;
    background: transparent;
    border: 200px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
} */

main{
    margin-top: 50px;
}

.input-box{
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #111111;
    margin:30px 0;
}

.input-box label {
    position: absolute;
    top: -10px;
    left: 5px;
    font-size: 0.8rem;
    color: #747379;
    font-weight: 500;
    pointer-events: none;
}



.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline:none;
    font-size: 1em;
    color: #747379;;
    font-weight: 600;
    padding:0 35px 0 5px;
}

.btn-custom{
background-color: white;
color: black;
border: none;
padding: 6px 18px;
font-size: 16px;
border-radius: 8px;
box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.4); /* Difuminado negro */
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
background-color: black;
color: white;
}

.icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #747379;
    font-size: 1.3em;
}


