body {
    background: black;
}

.login-heading {
    color: #fff;
    font-family: "Switzer-Bold";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    animation: slideIn 0.5s ease-out;
}

.form {
    max-width: 344px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sub-heading {
    color: #fff;
    font-family: "Switzer-Semibold";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sub-heading1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-family: "Switzer-Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
    margin-top: 30px;
}

.form-input {
    border-radius: 7.857px;
    border: none;
    padding: 20px;
    background: rgba(242, 241, 243, 0.12);
    width: 344px;
    height: 60px;
    flex-shrink: 0;

    font-family: "Switzer-Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.form-input:focus {
    outline: none;
}

.loginbtn {
    display: flex;
    height: 40px;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: none;
    background: #c104d2;
    color: #fff;
    font-family: "Switzer-Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
}

.or {
    color: rgba(255, 255, 255, 0.4);
    font-family: "Switzer-Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-decoration-line: underline;
}

a {
    color: rgba(255, 255, 255, 0.4);
    list-style: none;
    text-decoration: none;
}

.glogobtn {
    display: flex;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 7px;
    align-self: stretch;
    border-radius: 4px;
    background: rgba(217, 217, 217, 0.99);
    border: none;
    color: #000;
    font-family: "Switzer-Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
}

.circle1 {
    position: absolute;
    top: -50px;
    z-index: -1;
    left: -79px;
}

.circle2 {
    position: absolute;
    bottom: -62px;
    z-index: -1;
    right: -104px;
}

.scroller {
    max-width: 297px;
    overflow: hidden;
    transform: rotate(-39deg);
    margin-top: -76px;
    margin-left: 85px;
}

.input-group .form-input {
    padding-right: 2.5rem;
    /* Add enough padding to make room for the icon */
}

.btn-outline-secondary {
    background: none;
    border: none;
    position: absolute;
    right: 6px;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust vertical alignment */
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.passwordlabel {
    font-size: 20px;
    font-family: "Switzer-Medium";
    font-weight: 500;
    color: white;
    margin-top: 20px;
    margin-bottom: 5px;
}


@media (max-width: 1600px) {
    .login-form {
        width: 467px;
        height: 100%;
        padding: 20px;
        padding-top: 100px;
        padding-bottom: 118px;
    }
}

@media (max-width: 600px) {
    .login-form {
        width: 80%;
        height: 100%;
        padding: 20px;
        padding-top: 100px;
        padding-bottom: 118px;
    }

    .login-heading {
        color: #fff;
        font-family: "Switzer-Bold";
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
    }

    .form-input {
        width: 100%;
        height: 55px;
        font-size: 14px;
        line-height: 20px;
    }

    .sub-heading {
        font-size: 30px;
        line-height: 35px;
    }
}




/* login css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #6b48ff, #00ddeb);
    overflow: hidden;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
}

.sub-heading {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #6b48ff;
    box-shadow: 0 0 8px rgba(107, 72, 255, 0.3);
}

.input-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 38%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #6b48ff;
}

.login-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, #6b48ff, #00ddeb);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.forgot-password {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password a {
    color: #6b48ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #000;
    text-decoration: underline;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;

    width {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(45deg, #6b48ff, #00ddeb);
        overflow: hidden;
    }

    .login-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 400px;
        animation: slideIn 0.5s ease-out;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .logo {
        text-align: center;
        margin-bottom: 2rem;
    }

    .logo h1 {
        color: #333;
        font-size: 2rem;
        font-weight: 700;
    }

    .sub-heading {
        color: #333;
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .form-input {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .form-input:focus {
        outline: none;
        border-color: #6b48ff;
        box-shadow: 0 0 8px rgba(107, 72, 255, 0.3);
    }

    .input-group {
        position: relative;
    }



    .login-btn {
        width: 100%;
        padding: 0.8rem;
        background: linear-gradient(45deg, #6b48ff, #00ddeb);
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-top: 1rem;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .toggle-password {
        position: absolute;
        right: 10px;
        top: 38%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #000;
        transition: color 0.3s ease;
    }

    .toggle-password:hover {
        color: #6b48ff;
    }



    .error-message {
        color: #dc3545;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    .background-shapes {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

    .shape {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 15s infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0);
            opacity: 0.6;
        }

        50% {
            opacity: 0.3;
        }

        100% {
            transform: translateY(-100vh);
            opacity: 0.6;
        }
    }
}
