body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}
.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%
}
.warning-sign {
    margin-bottom: 30px;
}
h2 {
    color: #333333;
    margin-bottom: 10px;
}

p {
    color: #238EC4;
    margin-bottom: 25px;
}
.btn-continue {
    background-color: #E02D2D;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
}
.btn-continue:hover {
    background-color: #3CB009;
}
.btn-continue:active {
    transform: scale(0.95);
}
