@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body{
    font:14px 'Poppins', sans-serif;
   
}
*, :after, :before {
    box-sizing: border-box;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.box{
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
}
h1{
    margin: 0 0 20px;
    padding: 0;
}
/* .form-feilds .feild{
    margin-bottom: 10px;
} */
.form-feilds input{
    width: 100%;
    border: 1px solid #999;
    border-radius: 0;
    padding: 10px 16px;
    text-transform: uppercase;
}
.secret-key-feild.form-feilds {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.secret-key-feild{
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.secret-key-feild.form-feilds .feild{
    flex: auto;
}
.common{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.common .feild{
    flex: 0 0 23.95%;
}

.btn-set{
    margin-top: 15px;
}
.btn-set .btn {
    background-color: #eee;
    padding: 10px 16px;
    border: 1px solid #999;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.btn-set .btn.success{
    background-color: green;
    border-color: green;
    margin-right: 10px;
}
.btn-set .btn.danger{
    background-color: #9f0000;
    border-color: #9f0000;
}
@media screen and (max-width:500px) {
    .common .feild{
        flex: auto;
    }
}