.signup-body {

    background: #0f172a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;

}


/* SIGNUP BOX */

.signup-box {

    background: #111827;
    padding: 40px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    text-align: center;

}


.signup-box h2 {

    margin-bottom: 10px;

}

.signup-box p {

    margin-bottom: 20px;
    color: #ccc;

}


/* INPUT */

.signup-box input {

    width: 100%;
    padding: 12px 45px 12px 12px;
    border: none;
    border-radius: 6px;
    background: #1f2937;
    color: white;
    font-size: 14px;
    outline: none;
    margin-bottom: 18px;
    /* ⭐ ye important hai */
    transition: 0.3s;

}

.signup-box input:focus {

    background: #293548;

}


/* INPUT BOX FOR EYE ICON */
.input-box {
    position: relative;
    margin-bottom: 18px;
}

.toggle-password {

    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;

}

.toggle-password:hover {

    color: white;

}


/* BUTTON */

.signup-box button {

    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #3b82f6;
    color: white;
    font-size: 16px;
    cursor: pointer;

}

.signup-box button:hover {

    background: #2563eb;

}


/* LOGIN TEXT */

.login-text {

    margin-top: 15px;
    font-size: 14px;

}

.login-text a {

    color: #3b82f6;
    text-decoration: none;

}


/* BACKGROUND ANIMATION */

.shape {

    position: absolute;
    opacity: .3;
    animation: float 8s infinite linear;

}


.circle {

    width: 100px;
    height: 100px;
    background: #3b82f6;
    border-radius: 50%;
    top: 10%;
    left: 10%;

}

.square {

    width: 80px;
    height: 80px;
    background: #9333ea;
    top: 70%;
    left: 20%;

}

.triangle {

    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #22c55e;
    top: 40%;
    right: 10%;

}

.small {

    transform: scale(.6);
    top: 80%;
    left: 70%;

}


@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0);
    }

}


/* MOBILE */

@media(max-width:600px) {

    .signup-box {
        width: 90%;
    }

}