.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #303C6C;
    z-index: 200;
}


.modal-content {
    display: block;
    background-color: #F1F3F9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    gap: 40px;
}

.modal-content-monitoring{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    text-align: center;
}

.bot-button {
    display: flex;
    gap: 12px;
    background: #FCFCFC;
    color: #0348D2;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #0348D2;
    align-items: center;
}

.bot-button:hover {
    background: #0348D2;
    color: #FCFCFC;
}

.bot-button:hover svg {
    fill: #FCFCFC;
}

.password-button {
    display: flex;
    gap: 12px;
    background: #2F6FED;
    color: #FCFCFC;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 40px;
    border: none;
}

.password-button:hover {
    background: #0348D2;
    color: #FCFCFC;
}

.password-button:disabled {
    background: #C1D4FA;
    color: #FCFCFC;
}

.registration-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F1F3F9;
    gap: 20px
}

.monitoring-form {
    display: flex;
    flex-direction: column;
    width: 360px;
    gap: 20px;
    align-items: center;
}

.monitoring-field-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.registration-form input {
    width: 260px;
}

.registration-form input::placeholder {
    color: #C3C9D5;
}

.registration-form p {
    font-size: 12px;
    margin-top: 0;
    width: 270px;
    text-align: left;
}

.monitoring-form-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.monitoring-form-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}