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

#recapture{
    display: none;
}

body {
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px;
    background: #000000;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-size: 14px;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.registration-form input::placeholder {
    color: #aaa;
}

.registration-form .form-row {
    display: flex;
    gap: 20px;
}

.registration-form .form-row .form-group {
    flex: 1;
}

.registration-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-danger {
    background-color: #e03636!important;
}

.btn-warning{
    background-color: #e0b536!important;
}

.btn-secondary{
    background-color: #26c6eb!important;
}

.btn-primary{
    background-color: #0056b3!important;
}

.btn-light-primary{
    color:#000;
    border-color: #007bff;
    background-color: rgba(0, 87, 179, 0.378)!important;
}

.registration-form button:hover {
    background-color: #0056b3;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.row {
    display: flex!important;
    gap: 5px;
}

.col-10 {  width: 10%; }
.col-20 {  width: 20%; }
.col-30 {  width: 30%; }
.col-40 {  width: 40%; }
.col-50 {  width: 50%; }
.col-60 {  width: 60%; }
.col-70 {  width: 70%; }
.col-80 {  width: 80%; }
.col-90 {  width: 90%; }
.col-100 {  width: 100%; }

#drop-zone {
    border: 2px dashed #aaa;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

#drop-zone.hover {
    background-color: #f0f0f0;
}

#preview {
    border:1px dashed;
}

#preview img {
    max-width: 100%;
    max-height: 150px;
}

.mb-1{
    margin-bottom: 1rem;
}

.mb-2{
    margin-bottom: 2rem;
}

.mb-3{
    margin-bottom: 3rem;
}

.text-danger{
    color: red;
}

@media (max-width: 600px) { 
    .row{
        display: block;
    } 
    .col-30 {
        height:160px;
        width: 100%;
    }

    .col-70 {
        width: 100%;
    }
}

.hidden {
    display: none;
}
.visible {
    display: block;
}

.icon-button-success{
   width:auto!important;
   padding: 12px!important;
   background:#4caf50!important;
   color:white!important;
}

.icon-button-danger{
   width:auto!important;
   padding: 12px!important;
   background:#e03636!important;
   color:white!important;
}

.icon-button-primary{
   width:auto!important;
   padding: 12px!important;
   background:#007bff!important;
   color:white!important;
}

.float-end{
    float:right;
}

.text-center{
    text-align: center;
}