﻿
body {
    /*background-color: #eff3ff;*/
    font-family: Arial, sans-serif;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.form-font {
    text-align: center;
    margin-bottom: 20px;
    color: black;
    font-size: 28px;
}


.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.special-row {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}

.form-group {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
}

label {
    color: black;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    padding: 10px;
    border: 1px solid #5c82e2;
    border-radius: 4px;
    color: #5c82e2;
    margin-bottom: 10px;
}

    input:focus, select:focus {
        outline: none;
        border-color: #8ea0e6;
    }

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    color: #1e3a5f;
    transition: background-color 0.3s ease;
}


    .btn:hover {
        background-color: #d1e0ff;
    }

.form-btn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    margin-top: 10px;
}
/*.btn-save {
    margin-right: 10px;
}*/
.note {
    color: #eff3ff;
    font-size: 12px;
}

.text-danger {
    color: #ffb3b3;
}

.error-message {
    color: #ffb3b3;
    font-size: 14px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }
}
