.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;
}

.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;
    margin-bottom: 40px;
    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;
}

.registration-form input {
    width: calc(100% - 40px);
    width: 260px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #6A7995;
    border-radius: 8px;
    font-size: 16px;

}

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

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