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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;

}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../img/background.jpg') center/cover no-repeat;
    overflow-y: scroll;

}

.card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px
}

.card .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.card h3 {
    margin: 0;
    font-size: 12px;
    color: #6d664e;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 700;
}

.container1 {
    background-color: #084da6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    position: relative;

    left: 20%;
}

.header {
    padding: 0px 20px;
    background-color: #f8faf2;
}

.header h1 {
    margin-top: 10px;
    font-size: 18px;
    color: #002e6e;
}

.form {
    padding: 10px 70px;
}

.form .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form label {
    font-size: 14px;
}

.form a {
    font-size: 14px;
    color: #ffcc00;
    text-decoration: none;
}

.form button {
    width: auto;
    padding: 10px 18px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: #002e6e;
    cursor: pointer;
    margin-top: 10px !important;
    transition: background-color 0.3s ease;
}

.form button:hover {
    background-color: #e6b800;
}

.single-input {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 0px 10px 20px;
}

.single-input span {
    color: #084da6;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.single-input input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 5px;
    color: #333;
}

.center-placeholder {
    text-align: left;
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 5px;
    color: #333;
}

.center-placeholder::placeholder {
    text-align: left;
    color: #353553;
    font-weight: 500;
}
.text-danger {
    text-align: left;
    display: inline-block;
}

.circle {
    position: relative;
    display: inline-block;
}


.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6d664e;
    font-size: 24px;
    font-weight: 700;
    padding: 5px;
    border-radius: 4px;
}

.top {
    position: absolute;
    bottom: 8vh;
}

.mycontainr {
    position: relative;
    height: 100vh;
    width: 80%;
    margin: 0 auto 0 4%;

}

.card {
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .top {
        position: absolute;
        top: 5%;
        bottom: 5%;
    }

    .mycontainr {
        margin: 0 auto;
    }

    .container1 {
        top: 10%;
        left: 0%
    }

    .header {
        padding: 0px;
    }

    .background .card {
        margin-bottom: 20px;
    }

    .form {
        padding: 25px;
    }
    .mobile-padd{
        margin-bottom: 10px;
    }
    .form button {
        width: 100%
    }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}