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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f4c81, #00a8cc);
    color: white;
}

.container {

    width: 90%;
    max-width: 400px;

    text-align: center;

    background: rgba(255,255,255,0.15);

    padding: 35px 25px;

    border-radius: 20px;

    backdrop-filter: blur(10px);
}


h1 {

    font-size: 32px;

    margin-bottom: 20px;

}


p {

    font-size: 17px;

    margin-bottom: 15px;

}


button {

    margin-top: 20px;

    padding: 14px 40px;

    border: none;

    border-radius: 30px;

    background: white;

    color: #0f4c81;

    font-size: 18px;

    cursor: pointer;

}


button:hover {

    background: #e6f7ff;

}