/*//////////////////////////////////////////////////////////////////
[ DISNEY PLUS THEME RESTYLE ]*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: #f3f3f3;
}

body, html {
    height: 100%;
    font-family: "Lexend", sans-serif;
}

/*---------------------------------------------*/
a {
    font-family: "Lexend";
    font-size: 14px;
    line-height: 1.7;
    color: #f3f3f3;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #adadad;
}

input:-moz-placeholder {
    color: #adadad;
}

input::-moz-placeholder {
    color: #adadad;
}

input:-ms-input-placeholder {
    color: #adadad;
}

textarea::-webkit-input-placeholder {
    color: #adadad;
}

textarea:-moz-placeholder {
    color: #adadad;
}

textarea::-moz-placeholder {
    color: #adadad;
}

textarea:-ms-input-placeholder {
    color: #adadad;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-family: Lexend;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}

.txt2 {
    font-family: Lexend;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    text-transform: uppercase;
}

.bg1 {
    background-color: #113CCF
}

.bg2 {
    background-color: #4A90E2
}

.bg3 {
    background-color: #1565C0
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
    width: 100%;
    margin: 0 auto;
}


.disney-background {
    background: linear-gradient(135deg, #040814 0%, #0D1B2A 25%, #113CCF 50%, #1B263B 75%, #040814 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wrap-login100 {
    width: 500px;
    background: rgba(4, 8, 20, 0.85);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(17, 60, 207, 0.3);
}

/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: rgb(255, 255, 255);
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(17, 60, 207, 0.5);
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #4A90E2;
}

.label-input100 {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 7px;
}

.input100 {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #f3f3f3;
    line-height: 1.2;

    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    padding: 0 7px 0 43px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input100::after {
    content: attr(data-symbol);
    font-family: Material-Design-Iconic-Font;
    color: #4A90E2;
    font-size: 22px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: calc(100% - 20px);
    bottom: 0;
    left: 0;
    padding-left: 13px;
    padding-top: 3px;
}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #113CCF;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus+.focus-input100::before {
    width: 100%;
}

.has-val.input100+.focus-input100::before {
    width: 100%;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wrap-login100-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.login100-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #113CCF;
    background: -webkit-linear-gradient(right, #113CCF, #4A90E2, #113CCF, #4A90E2);
    background: -o-linear-gradient(right, #113CCF, #4A90E2, #113CCF, #4A90E2);
    background: -moz-linear-gradient(right, #113CCF, #4A90E2, #113CCF, #4A90E2);
    background: linear-gradient(right, #113CCF, #4A90E2, #113CCF, #4A90E2);
    top: 0;
    left: -100%;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn {
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: #113CCF;
    line-height: 1.2;
    text-transform: uppercase;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    transition: all 0.3s ease;
}

.login100-form-btn:hover {
    background-color: #0F2FA3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 60, 207, 0.4);
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
    left: 0;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 2px;
    pointer-events: none;

    font-family: "Lexend", sans-serif;
    font-weight: 400;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

#code-display {
    color: #f3f3f3;
}

#popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
    max-width: 500px;
    min-width: 380px;
    border-radius: 8px;
}

#popup * {
    color: #333333
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 8px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

/*//////////////////////////////////////////////////////////////////
[ Social item ]*/
.login100-social-item {
    font-size: 25px;
    color: #fff;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 5px;
}

.login100-social-item:hover {
    color: #fff;
    background-color: #333333;
}

/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
    .wrap-login100 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Disney Plus specific animations */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.login100-form-title::before {
    content: "✨";
    margin-right: 10px;
    animation: sparkle 2s infinite;
}

.login100-form-title::after {
    content: "✨";
    margin-left: 10px;
    animation: sparkle 2s infinite 1s;
}

/*//////////////////////////////////////////////////////////////////
[ Navigation Bar ]*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(4, 8, 20, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(17, 60, 207, 0.3);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(17, 60, 207, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background: rgba(17, 60, 207, 0.2);
    transform: translateY(-2px);
    color: #4A90E2;
    box-shadow: 0 8px 25px rgba(17, 60, 207, 0.3);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.navbar-nav-item {
    position: relative;
}

.navbar-nav-link {
    display: flex;
    align-items: center;
    color: #f3f3f3;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #113CCF, #4A90E2);
    transition: width 0.3s ease;
    z-index: -1;
}

.navbar-nav-link:hover::before,
.navbar-nav-link.active::before {
    width: 100%;
}

.navbar-nav-link:hover,
.navbar-nav-link.active {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 60, 207, 0.3);
}

.navbar-nav-link.active {
    background: rgba(17, 60, 207, 0.1);
}

.navbar-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(17, 60, 207, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    background: rgba(17, 60, 207, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(17, 60, 207, 0.4);
}

/* Content area adjustment */
.main-content {
    min-height: 100vh;
    padding-top: 90px;
    box-sizing: border-box;
}

.container-login100 {
    min-height: calc(100vh - 90px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.limiter {
    width: 100%;
    height: calc(100vh - 90px);
    margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(4, 8, 20, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(17, 60, 207, 0.2);
    }

    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav-link {
        text-align: center;
        padding: 15px 20px;
        margin: 0;
        border-radius: 10px;
    }

    .navbar-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 15px;
    }

    .navbar-brand {
        font-size: 18px;
        padding: 10px 16px;
    }

    .navbar-nav-link {
        font-size: 14px;
        padding: 12px 16px;
    }

    .main-content {
        padding-top: 80px;
    }

    .container-login100 {
        min-height: calc(100vh - 80px);
    }

    .limiter {
        height: calc(100vh - 80px);
    }
}