@import '../reset.css';

.container {
    width: 80%;
    margin: 0 auto 30px;

    .container__description {
        color: #000000;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 2;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.container-title {
    color: #082275;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}

.text-area__change {
    display: none;
    width: 100%;
    height: 500px;
}

.btn__change {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn__change--confirm {
    display: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn__change--cancel {
    display: none;
    background-color: #4D4D4D;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}