/* Estilos generales */
*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #153E4D;
    font-family: Arial, sans-serif;
}

/* Fondo y formas */
.background {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background .shape {
    height: 150px;
    width: 150px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child {
    background: linear-gradient(#153e4d, #C69758);
    transform: translate(-50%, -50%);
    top: 75%;
    left: 40%;
}

.shape:last-child {
    background: linear-gradient(to right, #153e4d, #C69758);
    transform: translate(-50%, -50%);
    top: 25%;
    left: 60%;
}

/* Estilos de la tarjeta */
.card-body {
    max-width: 400px;
    width: 90%;
    background-color: rgba(100, 200, 200, 0.30);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 40px 30px;
}

.card-body * {
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

.card-body h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* Estilos de los inputs */
label {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
}

input {
    display: block;
    height: 45px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 300;
}

#logo-container {
    text-align: center;
    margin-bottom: 30px;
}

#logo-container img {
    max-width: 80%;
    height: auto;
    opacity: 0.8;
}

/* Contenedor de los iconos e inputs */
#logo-container img {
    opacity: 0.8;
    z-index: 1;
}

.input-container {
    display: block ruby;
    align-items: center;
    justify-content: flex-end;
}

.input-container label {
    line-height: 1.5;
    text-align: left;
    font-size: 18px;
}

.input-container i {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 20px;
}

::placeholder {
    color: #e5e5e5;
}

.boton_envio {
    font-weight: 650;
    font-size: 17px;
  }

button {
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 21px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1 ;
    font-weight: bold;
}
@media (max-width: 576px) {
    .shape:first-child, .shape:last-child {
        display: none;
    }

    .card-body {
        padding: 20px 15px;
    }

    .card-body h3 {
        font-size: 20px;
    }

    label {
        font-size: 14px;
    }

    input {
        height: 35px;
        font-size: 14px;
    }

    .boton_envio {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}
