/* main.css */


* {
    transition: all 0.3s ease;
}

body, html {
    font-family: 'Segoe UI', sans-serif;
}

/* components.css */


.btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}
.btn-primary {
    background-color: #007bff;
    color: white;
}
.btn-primary:hover {
    background-color: #0056b3;
}

.input {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: calc(100% - 22px);
    font-size: 16px;
}

.status-message {
    padding: 12px 16px;
    margin: 15px auto;
    max-width: 500px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
}

.status-success {
    background: #e6f4ea;
    color: #237a3a;
    border: 2px solid #30b34b;
}
.status-error {
    background: #fcebea;
    color: #a71d2a;
    border: 2px solid #e53935;
}

.field-error{
    color: red;
}

/* forms.css */

form.hidden{display: none;}

.form-group {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 30px auto;
    width: 100%;
    padding: 0 8px;
    gap: 0.5rem;

    .input.input--invalid{
        border-color: red;
    }
}

.form-title {
    text-align: center;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.legal-consent > label{display: flex;}