﻿* {
    padding: 0%;
    margin: 0%;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #330cfc, #fc04c0, #fc0a29);
}

.container {
    max-width: 360px;
    padding: 28px;
    margin: 0 28px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 20px rgb(0, 0, 0,0.6);
    background: white;
}
.d-none {
    display: none !important;
}

h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}

.input-box {
/*    display: flex;*/
    flex-wrap: wrap;
    width: 50%;
    padding-bottom: 15px;
}

    .input-box:nth-child(2n) {
        justify-content: end;
    }

    /* .input-box label,.genter-title{
    width: 95%;
    
    font-weight: bold;
    margin: 5px 0;
} */

    .input-box input {
        height: 40px;
        width: 95%;
        padding: 0 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        outline: none;
        /*background: #eaeaea;*/
    }

    .input-box select {
        height: 40px;
        width: 95%;
        padding: 0 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        outline: none;
        background: #eaeaea;
    }


.button-container {
    margin: 15px 0;
}


    .button-container button {
        width: 100%;
        margin-top: 60px;
        padding: 10px;
        display: block;
        font-size: 20px;
        color: #fff;
        border: none;
        border-radius: 5px;
        background: #007bff;
        cursor: pointer;
        transition: 0.3s;
    }

.button-container1 button {
    width: 100%;
    margin-top: 30px;
    padding: 10px;
    display: block;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background: #007bff;
    cursor: pointer;
    transition: 0.3s;
}

.button-container button:hover {
    background: #0056b3;
}

.button-container1 button:hover {
    background: #0056b3;
}

/* .input type{
    background: #eaeaea;
}  */
