* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: .4rem;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at top right, rgba(79, 70, 229, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(67, 56, 202, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.animated-bg {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.animated-bg span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D1D1D1;
    animation: animate 25s linear infinite;
    background: rgba(99, 102, 241, .1);
    border-radius: 50%;
    bottom: -150px;
    position: absolute;
}

@keyframes animate {
    0% {
        border-radius: 0;
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }

    100% {
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-1000px) rotate(2turn);
    }
}

.space-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wormhole {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle, transparent 20%, rgba(99, 102, 241, 0.08) 40%, rgba(79, 70, 229, 0.12) 60%, transparent 80%);
    border-radius: 50%;
    animation: slowRotate 30s linear infinite;
    filter: blur(2px);
    opacity: 0.4;
}

@keyframes slowRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: #e2e8f0;
    border-radius: 50%;
    animation: simpleTwinkle 2s ease-in-out infinite alternate;
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.6);
}

.star:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 30%;
    left: 20%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 30%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 15%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 25%;
    animation-delay: 2s;
}

.star:nth-child(6) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 60%;
    animation-delay: 0.3s;
}

.star:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 70%;
    animation-delay: 0.8s;
}

.star:nth-child(8) {
    width: 2px;
    height: 2px;
    top: 70%;
    left: 80%;
    animation-delay: 1.3s;
}

.star:nth-child(9) {
    width: 3px;
    height: 3px;
    top: 25%;
    left: 85%;
    animation-delay: 1.8s;
}

.star:nth-child(10) {
    width: 2px;
    height: 2px;
    top: 50%;
    left: 90%;
    animation-delay: 2.3s;
}

.star:nth-child(11) {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 5%;
    animation-delay: 0.7s;
}

.star:nth-child(12) {
    width: 4px;
    height: 4px;
    top: 75%;
    left: 45%;
    animation-delay: 1.2s;
}

.star:nth-child(13) {
    width: 2px;
    height: 2px;
    top: 85%;
    left: 65%;
    animation-delay: 1.7s;
}

.star:nth-child(14) {
    width: 3px;
    height: 3px;
    top: 5%;
    left: 75%;
    animation-delay: 2.2s;
}

.star:nth-child(15) {
    width: 2px;
    height: 2px;
    top: 45%;
    left: 35%;
    animation-delay: 0.4s;
}

.star:nth-child(16) {
    width: 3px;
    height: 3px;
    top: 55%;
    left: 55%;
    animation-delay: 2.5s;
}

.star:nth-child(17) {
    width: 2px;
    height: 2px;
    top: 65%;
    left: 25%;
    animation-delay: 3s;
}

.star:nth-child(18) {
    width: 4px;
    height: 4px;
    top: 90%;
    left: 85%;
    animation-delay: 0.2s;
}

.star:nth-child(19) {
    width: 3px;
    height: 3px;
    top: 12%;
    left: 88%;
    animation-delay: 1.4s;
}

.star:nth-child(20) {
    width: 2px;
    height: 2px;
    top: 33%;
    left: 92%;
    animation-delay: 2.8s;
}

.star:nth-child(21) {
    width: 3px;
    height: 3px;
    top: 18%;
    left: 45%;
    animation-delay: 1.1s;
}

.star:nth-child(22) {
    width: 2px;
    height: 2px;
    top: 52%;
    left: 12%;
    animation-delay: 2.4s;
}

.star:nth-child(23) {
    width: 4px;
    height: 4px;
    top: 78%;
    left: 68%;
    animation-delay: 0.9s;
}

.star:nth-child(24) {
    width: 3px;
    height: 3px;
    top: 28%;
    left: 78%;
    animation-delay: 1.6s;
}

.star:nth-child(25) {
    width: 2px;
    height: 2px;
    top: 62%;
    left: 38%;
    animation-delay: 2.1s;
}



@keyframes simpleTwinkle {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.cosmic-dust {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dust-particle {
    position: absolute;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: simpleFloat 12s linear infinite;
}

.dust-particle:nth-child(1) {
    width: 2px;
    height: 2px;
    left: 5%;
    animation-delay: 0s;
}

.dust-particle:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 15%;
    animation-delay: 2s;
}

.dust-particle:nth-child(3) {
    width: 2px;
    height: 2px;
    left: 25%;
    animation-delay: 4s;
}

.dust-particle:nth-child(4) {
    width: 2px;
    height: 2px;
    left: 35%;
    animation-delay: 6s;
}

.dust-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    left: 45%;
    animation-delay: 8s;
}

.dust-particle:nth-child(6) {
    width: 2px;
    height: 2px;
    left: 55%;
    animation-delay: 1s;
}

.dust-particle:nth-child(7) {
    width: 2px;
    height: 2px;
    left: 65%;
    animation-delay: 3s;
}

.dust-particle:nth-child(8) {
    width: 3px;
    height: 3px;
    left: 75%;
    animation-delay: 5s;
}

.dust-particle:nth-child(9) {
    width: 2px;
    height: 2px;
    left: 85%;
    animation-delay: 7s;
}

.dust-particle:nth-child(10) {
    width: 2px;
    height: 2px;
    left: 95%;
    animation-delay: 9s;
}



@keyframes simpleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Shooting stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ffffff, transparent);
    border-radius: 50%;
    animation: shoot 3s linear infinite;
}

.shooting-star:nth-child(1) {
    top: 20%;
    left: -10px;
    animation-delay: 0s;
}

.shooting-star:nth-child(2) {
    top: 60%;
    left: -10px;
    animation-delay: 2s;
}

.shooting-star:nth-child(3) {
    top: 40%;
    left: -10px;
    animation-delay: 4s;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(100vw) translateY(50px) rotate(45deg);
        opacity: 0;
    }
}

.galaxy {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    background:
        radial-gradient(ellipse at center,
            rgba(99, 102, 241, 0.2) 0%,
            rgba(79, 70, 229, 0.15) 30%,
            rgba(67, 56, 202, 0.1) 60%,
            transparent 80%);
    border-radius: 50%;
    animation: galaxyRotate 20s linear infinite;
    filter: blur(1px);
}

@keyframes galaxyRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.nebula1 {
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: 30%;
    left: -10%;
}

.nebula2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    bottom: 20%;
    right: -5%;
}

.planet {
    position: absolute;
    border-radius: 50%;
    animation: planetOrbit 8s ease-in-out infinite;
}

.planet1 {
    width: 80px;
    height: 80px;
    background:
        radial-gradient(circle at 30% 30%, #6366f1, #4f46e5, #3730a3);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    box-shadow:
        0 0 30px rgba(99, 102, 241, 0.4),
        inset -10px -10px 20px rgba(0, 0, 0, 0.3);
}

.planet2 {
    width: 60px;
    height: 60px;
    background:
        radial-gradient(circle at 25% 25%, #4338ca, #3730a3, #312e81);
    top: 70%;
    right: 12%;
    animation-delay: 2s;
    box-shadow:
        0 0 25px rgba(67, 56, 202, 0.3),
        inset -8px -8px 15px rgba(0, 0, 0, 0.3);
}

.planet3 {
    width: 45px;
    height: 45px;
    background:
        radial-gradient(circle at 35% 35%, #5b21b6, #4c1d95, #3c1361);
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
    box-shadow:
        0 0 20px rgba(91, 33, 182, 0.3),
        inset -6px -6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes planetOrbit {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.box-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    padding: 0;
    transition: all .5s ease-in;
}


.sub-box {
    background:
        linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%),
        radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 55px 45px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.2),
        0 0 60px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.8s ease-out, gentleGlow 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

@keyframes hologramFlicker {

    0%,
    100% {
        opacity: 1;
    }

    98% {
        opacity: 1;
    }

    99% {
        opacity: 0.8;
    }

    99.5% {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes gentleGlow {

    0%,
    100% {
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(99, 102, 241, 0.2),
            0 0 40px rgba(99, 102, 241, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(99, 102, 241, 0.3),
            0 0 60px rgba(99, 102, 241, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.sub-box .inc-logo {
    text-align: center;

}

.sub-box .inc-logo img {
    width: 6rem;
    filter: drop-shadow(0 0 8px white);

}

.login-subtitle {
    text-align: center;
    color: rgb(213, 213, 213);
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem 0 2rem;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.input-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.form-input {
    width: 100%;
    padding: 10px 24px;
    background:
        linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    position: relative;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    border-color: rgba(99, 102, 241, 0.5);
    background:
        linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow:
        0 0 0 2px rgba(99, 102, 241, 0.3),
        0 4px 20px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.6);
    transition: all 0.3s ease;
}

.form-input:focus::placeholder {
    color: rgba(148, 163, 184, 0.4);
    transform: translateX(10px);
}

.input-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.form-input:focus+.input-glow {
    left: 100%;
}

.login-btn {
    width: 100%;
    padding: 12px;
    /* background:
        linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3730a3 100%); */
    background-color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    color: #000;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    animation: buttonPulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 0 10px white;
    }

    50% {
        box-shadow: 0 0 20px white;
    }
}

.login-btn:active {
    transform: translateY(-1px);
}

.login-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 ease;
}

.login-btn:hover::before {
    left: 100%;
}

.message {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    font-style: italic;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

#warning-box {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    background: #e81531;
    background: rgba(124, 45, 18, .6);
    height: 100%;
    backdrop-filter: blur(2.5px);
    top: 0;
    left: 0;
    width: 100%;
    transition: .5s;
}

#warning-msg {
    opacity: 0;
    visibility: hidden;
    font-size: 1.5rem;
    z-index: 9999;
    font-weight: bold;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 1.2s linear infinite;
    text-shadow: 0 0 20px white;
    transition: .5s all ease-in-out;
}

@keyframes textShine {
    0% {
        background-color: white;
    }

    40% {
        background-color: rgb(190, 27, 27);
    }

    100% {
        background-color: white;
    }
}

.welcome {
    padding: 25px 30px;
    color: white;
    text-align: justify;
    font-size: 1rem;
    display: none;
    opacity: 0;
}

.welcome .hello {
    font-size: 2rem;
}

.welcome .info {
    margin-bottom: 1rem;
}

.welcome .info p {
    margin-bottom: -2px;
}

.welcome p:nth-child(6) {
    font-size: .9rem;
}

.contact {
    margin-top: 1rem;
    text-align: center;
}

.contact .contact-heading {
    color: #f0f6fc;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}
.contact .contact-heading:after {
    background: linear-gradient(90deg, #0f8, #00d4ff);
    border-radius: 2px;
    bottom: -.8rem;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 7rem;
}
.social-link,
.social-links {
    display: flex;
    justify-content: center;
    text-align: center;
}

.social-links {
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    align-items: center;
    background: hsla(0, 0%, 100%, .05);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 12px;
    color: #8b949e;
    font-size: 1.2rem;
    height: 45px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all .3s ease;
    width: 45px;
}
.social-link:hover {
    border-color: #0f8;
    box-shadow: 0 10px 25px rgba(0, 255, 136, .2);
    color: #0f8;
    transform: translateY(-3px);
}
.social-link:before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, .2), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left .5s ease;
    width: 100%;
}
.social-link:hover:before {
    left: 100%;
}
.social-links p{
    font-size: 10px;
    color: rgb(231, 231, 231);
    margin-top: 5px;
}
.course-link {
    display: block;
    color: white;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin: .4rem 0;
    animation: textPulse 1.5s infinite;
    text-shadow: 0 0 10px white;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 15px    white;

    }

    50% {
        opacity: .6;
        text-shadow: 0 0 10px white;
    }
}
@media (max-width: 480px) {
    body {
        background:
            radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.12) 0%, transparent 35%),
            radial-gradient(ellipse at top right, rgba(79, 70, 229, 0.1) 0%, transparent 35%),
            radial-gradient(ellipse at bottom left, rgba(67, 56, 202, 0.08) 0%, transparent 35%),
            radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.06) 0%, transparent 35%),
            linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    }

    .box-container {
        margin: 10px;
        max-width: 100%;
    }

    .sub-box {
        padding: 20px 25px;
        border-radius: 20px;
        margin: 10px;
        backdrop-filter: blur(15px) saturate(150%);
    }

    .login-title {
        font-size: 1.9rem;
        margin-bottom: 8px;
    }

    .login-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .form-input {
        padding: 16px 18px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .login-btn {
        padding: 10px;
        font-size: 1rem;
    }

    .planet1,
    .planet2,
    .planet3 {
        width: 40px;
        height: 40px;
        animation-duration: 12s;
        /* Slower for better performance */
    }

    .planet2 {
        width: 35px;
        height: 35px;
    }

    .planet3 {
        width: 30px;
        height: 30px;
    }

    .galaxy {
        width: 150px;
        height: 150px;
        animation-duration: 30s;
        /* Slower rotation */
    }

    .wormhole {
        width: 400px;
        height: 400px;
        animation-duration: 40s;
        /* Slower for performance */
    }

    /* Reduce dust particles on mobile */
    .dust-particle:nth-child(n+6) {
        display: none;
    }

    /* Add mobile-specific star field enhancement */
    .stars::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(2px 2px at 20px 30px, #e2e8f0, transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.8), transparent),
            radial-gradient(1px 1px at 90px 40px, #e2e8f0, transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(99, 102, 241, 0.6), transparent),
            radial-gradient(2px 2px at 160px 30px, #e2e8f0, transparent);
        background-repeat: repeat;
        background-size: 200px 100px;
        animation: mobileStarField 20s linear infinite;
        opacity: 0.6;
    }

    @keyframes mobileStarField {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-100px);
        }
    }
}

@media (max-width: 360px) {
    .sub-box {
        padding: 15px 30px;
        margin: 5px;
    }
    .login-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .social-links {
        gap: .8rem;
    }

    .social-link {
        font-size: 1.1rem;
        height: 45px;
        width: 45px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .sub-box {
        padding: 25px 30px;
    }

    .login-title {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }

    .login-subtitle {
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }
}