/* Main container */
.verify_cont {
    margin: auto;
    width: 70%;
    padding: 20px;
    background-color: #f9fdfa;
}

/* Form container */
.verify_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.verify_rsa_container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Align labels and inputs horizontally */
.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Creates space between label and input */
    margin-bottom: 15px;
}

.form-label {
    flex: 0 0 30%; /* Label takes up 30% of the space */
    text-align: right; /* Align text to the right */
    margin-right: 10px; /* Space between label and input */
    font-weight: bold;
    color: #333;
}

.form-control {
    flex: 1; /* Input field stretches to fill remaining space */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit button styling */
button {
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    background: #38888e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

button:hover {
    background: #388e66;
    transform: scale(1.05);
}

/* Response container styling */
.response_verify {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.form-control {
    width: 100%; /* Заставляет поле ввода занимать 100% ширины родителя */
    box-sizing: border-box; /* Включает отступы и границы в общую ширину */
}