* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#body {
    font-family: 'Inter', sans-serif;
    /*    background: url('https://i.pinimg.com/736x/e8/65/6e/e8656ec5143ebd5dd6559d2a976041e7.jpg') no-repeat center center fixed;
    background-size: cover;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*    height: 100vh;
   overflow: hidden;*/
    margin-top: 50px;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    animation: floatIn 1s ease-out forwards;
    transform: translateY(50px);
    opacity: 0;
}

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

.login-card h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

    .input-group input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 14px;
        outline: none;
        transition: 0.3s;
    }

        .input-group input:focus {
            border-color: #00ffe0;
            box-shadow: 0 0 8px #00ffe0aa;
        }

.login-btn {
    width: 100%;
    padding: 12px;
    background: #00ffe0;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

    .login-btn:hover {
        background: #00c6b5;
    }

.or-text {
    text-align: center;
    color: #aaa;
    margin: 10px 0;
}

.social-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .social-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 10px #00ffe0aa;
    }

    .social-btn img {
        width: 18px;
    }

.footer {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

#Input_ConfirmPassword::placeholder,
#Input_Email::placeholder,
#Input_Password::placeholder,
#Input_Username::placeholder {
    color: #888;
    opacity: 0.7;
}


@media (max-width: 400px) {
    .login-card {
        width: 90%;
        padding: 30px;
    }
}
