body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 450px;
    text-align: center;
}

.logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 100px;
    height: auto;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.info-box {
    background-color: #eef5ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.info-box ul {
    padding-left: 20px;
    margin: 0;
}

.info-box li {
    font-size: 14px;
    margin-bottom: 5px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: #007BFF;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
