* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.card {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #555;
}

.title-red {
    color: #d60000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.title-redd {
    color: #d60000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }

    .title-red {
        font-size: 20px;
    }

    .info {
        font-size: 15px;
    }
}