* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f7fb;
    color: #333;

}


.container {

    width: min(900px, 95%);
    margin: auto;

}

.page {

    margin: 45px auto;

}

.card {

    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

}

.card h1 {

    color: #2563eb;
    margin-bottom: 15px;

}

.card .info {

    background: #eef6ff;
    border-right: 4px solid #2563eb;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 30px;
    line-height: 2;

}

label {

    display: block;
    margin: 18px 0 8px;
    font-weight: bold;

}

input,
select,
textarea {

    width: 100%;
    padding: 13px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: .2s;

}

input:focus,
select:focus,
textarea:focus {

    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);

}

textarea {

    height: 180px;
    resize: vertical;

}

button {

    margin-top: 25px;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: .25s;

}

button:hover {

    background: #1d4ed8;

}



.confirmation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmation-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.confirmation-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.confirmation-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.close-confirmation {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
}

.alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.alert-content {
    background: white;
    margin: 100px auto;
    padding: 20px;
    width: 400px;
    border-radius: 5px;
    text-align: center;
}

.alert-content p {
    padding: 5px 0px;
    font-size: 15px;
    text-align: right;
}

@media (max-width:480px) {
    .alert-content {
        width: 90%;
    }
}
.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}


.captcha-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.captcha-box img {
    height: 44px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #fff;
}

.captcha-box input {
    margin-bottom: 0;
    flex: 1;
    padding:12px 15px 12px 45px; border:1px solid #ddd; border-radius:5px;
    font-size:16px; transition:all .3s; direction:rtl;
}