* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../../images/k9npr/image/bgdt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../../images/k9npr/image/addbgdt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
.logo_k9npr {
    margin: 20px 0;
    position: relative;
    width: 300px;
    height: auto;
    display: flex;
    justify-content: center;
}

.logo_k9npr img {
    width: 60%;
}

.nepali-header {
    font-size: 24px;
    text-align: center;
    color: gold;
    text-shadow: 0 0 10px rgb(0, 0, 0);
}

/* Form */
.form-container {
    background-image: url('../../images/k9npr/image/tab4.png');
    background-size: 100% 100%;
    width: 100%;
    max-width: 600px;
    padding: 30px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    text-shadow: 0 0 10px rgb(0 0 0);
}
.form-header h2 span.highlight{
    font-size: 32px!important;
}

.form-header h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgb(0 0 0);
}

.form-header .highlight {
    color: gold;
    font-weight: bold;
    font-size: 24px;
}

.form-inputs {
    background-image: url('../../images/k9npr/image/tab3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin: 0px 20px 0 20px;
}

.form-group {
    margin-bottom: 15px;
    margin-left: 90px;
    position: relative;
}

.input-field-container {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.input-field {
    flex: 1;
    height: 50px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
    padding-right: 10px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn {
    width: 60%;
    color: white;
    cursor: pointer;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-register {}

.btn-whatsapp {}

/* Footer */
.partners {
    padding: 20px;
    width: 100%;
    max-width: 1000px;
}

.partners img {
    width: 100%;
}

/* Mobile styles */
@media (max-width: 768px) {
    .background {
        background-image: url('../../images/k9npr/image/bgmo.png');
    }

    .floating-elements {
        background-image: url('../../images/k9npr/image/addbgmo.png');
    }

    .container {
        padding: 10px;
    }

    .logo_k9npr {
        width: 200px;
        margin: 20px 0 0 0;
    }

    .nepali-header {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .form-container {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-header p {
        font-size: 14px;
    }

    .input-field-container {
        height: 50px;
    }

    .input-field {
        height: 40px;
    }
}