
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px
}

@media screen and (max-width: 767px)
{
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    padding: 40px;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px
}
}

.login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center
}

.login-box .user-box {
    position: relative
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: 0 0
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s
}

.login-box .user-box input:focus~label,.login-box .user-box input:valid~label {
    top: -20px;
    left: 0;
    color: #0f853d;
    font-size: 12px
}

.login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #0f853d;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 10px;
    letter-spacing: 4px
}

.login-box a:hover {
    background: #0f853d;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #0f853d,0 0 25px #0f853d,0 0 50px #0f853d,0 0 100px #0f853d
}

.login-box a span {
    position: absolute;
    display: block
}

.login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#0f853d);
    animation: btn-anim1 1s linear infinite
}

@keyframes btn-anim1 {
    0% {
        left: -100%
    }

    50%,100% {
        left: 100%
    }
}

.login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#0f853d);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%
    }

    50%,100% {
        top: 100%
    }
}

.login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#0f853d);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%
    }

    50%,100% {
        right: 100%
    }
}

.login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#0f853d);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%
    }

    50%,100% {
        bottom: 100%
    }
}

.loginlogo {
    width: 100%
}

.loginlogo a {
    display: block;
    text-align: center;
    padding: 2px;
    height: 88px
}

.loginlogo a img {
    width: 200px;
}

.loginlogo a:hover {
    background: #ffffff00;
    color: #fff0;
    border-radius: 5px;
    box-shadow: 0 0 5px #0f853d00,0 0 25px #0f853d00,0 0 50px #0f853d00,0 0 100px #0f853d00
}

.login-box form {
    text-align: center;
}
input[type="url"] {
    background-color: #212121; 
    color: #0f853d; 
}
.mobile-login-container {
    background: linear-gradient(135deg, #111531 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-login-form {
    background: #181b30;
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #3c415f;
    backdrop-filter: blur(10px);
}

.mobile-login-title {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-login-title h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-login-title p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.mobile-form-group {
    margin-bottom: 20px;
}

.mobile-form-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.required-star {
    color: #08fcfc;
    font-size: 12px;
}

.mobile-form-input {
    width: 100%;
    height: 48px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #3c415f;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.mobile-form-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc17;
    background: rgba(50, 50, 50, 0.9);
}

.mobile-form-input::placeholder {
    color: #888;
}

.mobile-submit-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(45deg, #08fcfc, #e40813);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.mobile-submit-btn:active {
    transform: scale(0.98);
}

.mobile-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-submit-btn:active::before {
    left: 100%;
}

.mobile-form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #08fcfc38;
}

.mobile-form-footer p {
    color: #b3b3b3;
    font-size: 14px;
    margin: 0;
}

.mobile-form-footer a {
    color: #08fcfc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-form-footer a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.mobile-forgot-password {
    text-align: center;
    margin-top: 20px;
}

.mobile-forgot-password a {
    color: #08fcfc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 14px;
}

.mobile-forgot-password a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.mobile-error-message {
    background: #08fcfc17;
    border: 1px solid #08fcfc54;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    color: #08fcfc;
    font-size: 14px;
    text-align: center;
}

.mobile-login-error {
    color: #08fcfc;
    font-size: 0.9rem;
    margin-top: 8px;
    animation: mobileErrorFadeIn 0.3s ease;
    font-weight: 600;
}

@@keyframes mobileErrorFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-5px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.mobile-error-input {
    border-color: #08fcfc !important;
    background: #08fcfc17 !important;
    box-shadow: 0 0 15px #08fcfc54 !important;
}

.mobile-has-value {
    border-color: #00ff23 !important;
    box-shadow: 0 0 10px rgb(0 255 60 / 20%) !important;
}

/* Touch optimizations */
.mobile-form-input,
.mobile-submit-btn {
    touch-action: manipulation;
}

/* iOS specific styles */
@@supports (-webkit-touch-callout: none) {
    .mobile-form-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@@media (max-width: 360px) {
    .mobile-login-form {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .mobile-login-title h1 {
        font-size: 22px;
    }
    
    .mobile-form-input,
    .mobile-submit-btn {
        height: 44px;
    }
}

@@media (max-height: 600px) {
    .mobile-login-container {
        padding: 10px;
    }
    
    .mobile-login-form {
        padding: 20px;
    }
    
    .mobile-login-title {
        margin-bottom: 20px;
    }
    
    .mobile-form-group {
        margin-bottom: 15px;
    }
}
.login-container {
    /* background: linear-gradient(135deg, #111531 0%, #1a1a1a 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-form-wrapper {
    background: #181b30;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #08fcfc38;
    backdrop-filter: blur(10px);
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
}

.login-title h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-title p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.required-star {
    color: #08fcfc;
    font-size: 12px;
}

.form-input {
    width: 100%;
    height: 52px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #08fcfc54;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc17;
    background: rgba(50, 50, 50, 0.9);
}

.form-input::placeholder {
    color: #888;
}

.submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #08fcfc54;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #08fcfc36;
}

.form-footer p {
    color: #b3b3b3;
    font-size: 14px;
    margin: 0;
}

.form-footer a {
    color: #08fcfc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #08fcfc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.error-message {
    background: #08fcfc17;
    border: 1px solid #08fcfc54;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    color: #08fcfc;
    font-size: 14px;
    text-align: center;
}

.login-error {
    color: #08fcfc;
    font-size: 0.9rem;
    margin-top: 8px;
    animation: errorFadeIn 0.3s ease;
    font-weight: 600;
}

@@keyframes errorFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-5px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.error-input {
    border-color: #08fcfc !important;
    background: #08fcfc17 !important;
    box-shadow: 0 0 15px #08fcfc54 !important;
}

.has-value {
    border-color: #00ff20 !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2) !important;
}

@@media (max-width: 480px) {
    .login-form-wrapper {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .login-title h1 {
        font-size: 24px;
    }
    
    .form-input, .submit-btn {
        height: 48px;
    }
}

.mobile-password-update {
    background: linear-gradient(135deg, #111531 0%, #1a1a1a 100%);
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-update-wrapper {
    background: #181b30;
    border-radius: 16px;
    padding: 30px 20px;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 9, 20, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-update-title {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-update-title h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-form-group {
    margin-bottom: 20px;
}

.mobile-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-required {
    color: #08fcfc;
    font-size: 12px;
}

.mobile-input {
    width: 100%;
    height: 48px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(229, 9, 20, 0.3);
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.mobile-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc17;
    background: rgba(50, 50, 50, 0.9);
}

.mobile-input::placeholder {
    color: #888;
}

.mobile-submit-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mobile-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.3);
}

.mobile-submit-btn:active {
    transform: translateY(0);
}

.mobile-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-submit-btn:hover::before {
    left: 100%;
}

.password-match-indicator {
    margin-top: 8px;
    font-size: 12px;
    color: #b3b3b3;
}

.password-match-indicator.match {
    color: #4CAF50;
}

.password-match-indicator.no-match {
    color: #08fcfc;
}

.temp-message {
    background: #08fcfc17;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    color: #0053ff;
    font-size: 14px;
    text-align: center;
}

@@media (max-width: 360px) {
    .mobile-update-wrapper {
        padding: 20px 15px;
        margin: 10px 0;
    }
    
    .mobile-update-title h1 {
        font-size: 20px;
    }
    
    .mobile-input, .mobile-submit-btn {
        height: 44px;
    }
}
.password-update-container {
    background: linear-gradient(135deg, #111531 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.update-form-wrapper {
    background: #181b30;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #08fcfc1c;
    backdrop-filter: blur(10px);
}

.update-title {
    text-align: center;
    margin-bottom: 30px;
}

.update-title h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.update-title p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.required-star {
    color: #08fcfc;
    font-size: 12px;
}

.form-input {
    width: 100%;
    height: 52px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #08fcfc45;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc17;
    background: rgba(50, 50, 50, 0.9);
}

.form-input::placeholder {
    color: #888;
}

.submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message h2 {
    color: #4CAF50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.login-redirect-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.login-redirect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.login-redirect-btn:active {
    transform: translateY(0);
}

.login-redirect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-redirect-btn:hover::before {
    left: 100%;
}

.password-strength {
    margin-top: 8px;
    font-size: 12px;
    color: #b3b3b3;
}

.strength-indicator {
    height: 4px;
    background: #08fcfc12;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    width: 0%;
    transition: width 0.3s ease;
}

@@media (max-width: 480px) {
    .update-form-wrapper {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .update-title h1 {
        font-size: 24px;
    }
    
    .form-input, .submit-btn, .login-redirect-btn {
        height: 48px;
    }
}

.password-reset-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reset-form-wrapper {
    background: #181b30;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(251 202 0 / 20%);
    backdrop-filter: blur(10px);
}

.reset-title {
    text-align: center;
    margin-bottom: 30px;
}

.reset-title h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reset-title p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.required-star {
    color: #08fcfc;
    font-size: 12px;
}

.form-input {
    width: 100%;
    height: 52px;
    background: #181b30;
    border: 2px solid #3e3c45;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc0d;
    background: rgba(50, 50, 50, 0.9);
}

.form-input::placeholder {
    color: #888;
}

.submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #08fcfc45;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #08fcfc1a;
}

.form-footer p {
    color: #b3b3b3;
    font-size: 14px;
    margin: 0;
}

.form-footer a {
    color: #08fcfc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #08fcfc;
    text-decoration: underline;
}

.error-message {
    background: #08fcfc12;
    border: 1px solid #08fcfc45;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    color: #08fcfc;
    font-size: 14px;
}

.success-step {
    text-align: center;
    padding: 20px;
}

.success-step h2 {
    color: #4CAF50;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-step p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
}

@@media (max-width: 480px) {
    .reset-form-wrapper {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .reset-title h1 {
        font-size: 24px;
    }
    
    .form-input, .submit-btn {
        height: 48px;
    }
}
.mobile-password-reset {
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-reset-wrapper {
    background: #181b30;
    border-radius: 16px;
    padding: 30px 20px;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 9, 20, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-title {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-title h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-title p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.mobile-form-group {
    margin-bottom: 20px;
}

.mobile-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-required {
    color: #08fcfc;
    font-size: 12px;
}

.mobile-select-container {
    position: relative;
    margin-bottom: 20px;
}

.mobile-select {
    width: 100%;
    height: 48px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #08fcfc45;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
}

.mobile-select:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc0f;
}

.mobile-select option {
    background: #181b30;
    color: #ffffff;
}

.mobile-input {
    width: 100%;
    height: 48px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid #08fcfc45;
    border-radius: 12px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.mobile-input:focus {
    outline: none;
    border-color: #08fcfc;
    box-shadow: 0 0 0 3px #08fcfc0f;
    background: rgba(50, 50, 50, 0.9);
}

.mobile-input::placeholder {
    color: #888;
}

.mobile-submit-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(45deg, #08fcfc, #08fcfc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mobile-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px #08fcfc45;
}

.mobile-submit-btn:active {
    transform: translateY(0);
}

.mobile-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-submit-btn:hover::before {
    left: 100%;
}

.mobile-error {
    background: #08fcfc17;
    border: 1px solid #08fcfc45;
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    color: #08fcfc;
    font-size: 14px;
    display: none;
}

.mobile-success {
    text-align: center;
    padding: 20px;
}

.mobile-success h2 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 15px;
}

.mobile-success p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.6;
}

@@media (max-width: 360px) {
    .mobile-reset-wrapper {
        padding: 20px 15px;
        margin: 10px 0;
    }
    
    .mobile-title h1 {
        font-size: 20px;
    }
    
    .mobile-input, .mobile-submit-btn, .mobile-select {
        height: 44px;
    }
}

