﻿<style >


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper {
    background: #fff;
}





.form-container {
    width: 90%;
    max-width: 400px;
    margin: 70px auto; /* Add auto margin to horizontally center */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #757575;
    font-size: 13px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background: #1f8dcf;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

    button:hover {
        background: #337ab7;
    }

/* Responsive Styles */
.responsive-box {
    padding: 10px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .responsive-box h2 {
        margin-top: 0;
    }

.input-container {
    display: flex;
    flex-direction: column;
}

.placeholder {
    color: #999; /* Placeholder text color */
    white-space: pre-wrap; /* Allows for multiple lines */
}

span.deleteicon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

    span.deleteicon span {
        position: absolute;
        display: block;
        right: 3px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        color: #fff;
        background-color: #ccc;
        font: 13px monospace;
        text-align: center;
        line-height: 1em;
        cursor: pointer;
    }

    span.deleteicon input {
        padding-right: 18px;
        box-sizing: border-box;
    }


input {
    height: 32px;
    width: 100%;
}

body {
    margin: 20px auto;
    margin-top: 100px;
    /*   display:flex;
                            justify-content:center; */
}

.show-input {
    width: 300px;
    padding: 10px;
}

h3 {
    margin-top: 20px;
    white-space: no-wrap;
    margin-left: 10px
}

.bg {
    background-color: #fbf2e7;
}

.row {
    padding-top: 50px;
    padding-bottom: 100px;
}

h1 {
    font-family: Merriweather,serif;
}

.tabs_wrapper {
    margin-top: 10px;
}

.tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

    .tabs li {
        text-align: center;
        cursor: pointer;
        padding: 10px;
        border: 1px solid #ccc;
        width: 120px; /* Fixed width for each tab */
        transition: background-color 0.3s; /* Smooth transition for hover effect */
    }

        /* Apply rounded corners to the first and last tabs */
        .tabs li:first-child {
            border-top-left-radius: 15px; /* Rounded top-left corner for the first tab */
            border-bottom-left-radius: 15px; /* Rounded bottom-left corner for the first tab */
        }

        .tabs li:last-child {
            border-top-right-radius: 15px; /* Rounded top-right corner for the last tab */
            border-bottom-right-radius: 15px; /* Rounded bottom-right corner for the last tab */
        }

        /* Add styles for the active tab */
        .tabs li.active {
            background-color: #1f8dcf;
            color: white;
        }

        /* Hover effect */
        .tabs li:hover {
            background-color: #1f8dcf; /* Change color on hover */
        }

/* Media query for responsiveness */

.custom-box {
    background-color: #1f8dcf;
    color: white;
    padding: 10px; /* Adjust padding as needed */
    border-radius: 5px; /* To add a slight rounding to the corners */
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}





#loadingDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.horizontal-radio {
    display: inline-block;
    margin-right: 10px;
    font-size: 10px; /* Adjust the margin as needed */
}

</style >
