@import "../font/Gotham/stylesheet.css";

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    position: relative;
    height: 100%;
}
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}
body {
    font-family: Gotham;
    margin: 0;
    height: 100%;
    background: url('../img/Fondo.webp') center/cover no-repeat;
    
}

.login-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 15px;
}



.login-box {
    width: 100%;
    max-width: 420px;
    color: #fff;
    text-align: center;
}
    .login-box img {
        width: 250px
    }

.Img-JBCLogin {
    display: flex;
    justify-content: center;
    margin-top: -50px;
}
h1 {
    font-size: 45px;
    margin: 0px;
}

.subtitle {
    color: #ccc;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 20px;
}

label {
    display: block !important;
    text-align: left;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: x-large;
    margin-left: 5px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

    .input-group i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 15px;
        color: #aaa;
        font-size: x-large;
    }

    .input-group .toggle {
        right: 15px;
        left: auto;
        cursor: pointer;
    }

input {
    width: 100%;
    padding: 14px 45px;
    border-radius: 8px !important;
    border: none;
    outline: none;
    font-size: 15px;
    
}

.code-box:focus {
    outline: 2px solid #ff6a00; /* o el color de tu tema */
    outline-offset: -5px;
}
.forgot {
    text-align: right;
    margin-bottom: 100px;
}

    .forgot a {
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

        .forgot a:hover, .signup a:hover {
            color: #F05A28;
        }
.btn-login {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #ff5a1f, #ff7a18);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

    .btn-login:hover {
        opacity: .9;
    }
.toggle {
    cursor: pointer;
}
.signup {
    margin-top: 25px;
    color: #ccc;
}

    .signup a {
        color: #fff;
        font-weight: bold;
        text-decoration: underline;
    }

.input-VerifyCode{
    margin-bottom: 50px;
}
.code-box {
    width: 15%;
    height: 14vw;
    max-width: 60px;
    max-height: 60px;
    border: none;
    border-radius: 30px;
    padding: 0px;
    justify-items: center;
    font-size: 25px;
    background: #ffffff;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .4), -3px -3px 8px rgba(255, 255, 255, 0.8);
}
.signup-link {
    font-weight: normal;
    color: white;

}

    .signup-link:hover {
        text-decoration: underline;
        font-weight: bold;
        color: #ff5a1f;
    }

.form-new-here {
    font-size: 15px;
    font-weight: normal;
    margin-top: 11px;
}

@media (max-height: 700px) {
    .login-wrapper {
        align-items: flex-start;
        padding-top: 40px;
    }
}


@media (max-height: 700px) {
    .login-wrapper {
        align-items: flex-start;
    }
}