/* register_style.css */

/* .text-md-end{
    width: 50%;
    text-align: center;
}
.mb-3{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
} */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #ecf0f1;
    --accent-color: #8d46f6;
    --error-color: #e74c3c;
}
.registration_form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.form-control{
    width: 100%;
}
.regform{
    min-width: 30vw;
}
.mb-3{
    width: 90%;
}
.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}
.auth-card {
    max-width: 1000px; /* Увеличение ширины формы */
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.auth-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.custom-input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    border-color: #3a8efc;
    outline: none;
}

.invalid-feedback {
    display: block !important;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.auth-button {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.auth-body {
    width: 100%;
    margin-top: 20px;
}

.row > label {
    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;
}
.auth-button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background-color: darken(var(--accent-color), 10%);
}

/* Мобильные стили */
@media only screen and (max-width: 768px) {
    .auth-card {
        padding: 20px;
    }

    .auth-title {
        font-size: 20px;
    }

    .custom-input {
        font-size: 14px;
    }

    .auth-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}