body {
    background: #e0ecf8;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

.logo-container img {
    width: 150px;
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
}

.neumorphic {
    background: #e0ecf8;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #5caafd9f, -8px -8px 16px #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.neumorphic input,
.neumorphic select {
    border: none;
    outline: none;
    box-shadow: inset 4px 4px 8px #5caafd9f, inset -4px -4px 8px #ffffff;
    border-radius: 20px;
    padding: 12px 20px;
    background: #e0ecf8;
    margin-bottom: 15px;
    width: 100%;
}

.neumorphic .cls-btn {
    background: #007bff;
    color: #ffffff;
    font-weight: bold;
    border: 2px solid #007bff;
    box-shadow: 8px 8px 16px #b0c4de, -8px -8px 16px #ffffff;
    border-radius: 20px;
    padding: 8px;
    transition: all 0.3s ease;
}

.neumorphic .cls-btn:hover {
    background-color: #d0e0f0;
    border: 2px solid #007bff;
    color: #0056b3;
}

.neumorphic a {
    text-decoration: none;
}


.captcha-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.captcha-box div {
    width: 50px;
    height: 50px;
    background: #e0ecf8;
    box-shadow: 6px 6px 12px #b0c4de, -6px -6px 12px #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #007bff;
}

@media (max-width: 576px) {
    .logo-container img {
        width: 100px;
        margin-bottom: 15px;
    }

    .neumorphic {
        padding: 20px;
    }

    .captcha-box div {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}