.warning-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.533);
}

.warning-container  .warning-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.warning-container  .warning-wrapper .warning-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    font-family: SFUI-Regular;
    font-size: 40px;
    background: linear-gradient(90deg, #F84040 0%, #ff7373 100%);
    width: 70px;
    padding: 10px;
    border-radius: 50%;
    align-self: center;
}

.warning-container  .warning-wrapper b {
    font-size: 18px;
    color: #FB4040;
    font-family: SFUI-Regular;
}

.warning-container  .warning-wrapper .message {
    font-size: 14px;
    color: #000000;
    font-family: SFUI-Regular;
}

.warning-container  .warning-wrapper button {
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-family: SFUI-Regular;
    font-size: 16px;
    background-color: #F84040;
    width: 50%;
    align-self: center;
}