body {
    font-family: 'Arial', sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    text-align: center;
    max-width: 500px;
}

h1 {
    color: #333;
    margin: 20px 0;
}
.info {
    color: #666;
    margin-bottom: 5px;
}
.verification-button {
    background-color: #ff5614;
    text-decoration: none;
    color: white;
    padding: 15px 25px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 20px 2px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.verification-button:hover {
    background-color: #058ad7;
    text-decoration: none;
    color: white;
}
.pg-logo {
    margin-top: 80px;
    padding: 10px;
    max-width: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.header {
    padding-bottom: 20px;
}
.logo {
    margin-top: 100px;
    padding: 10px;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.code-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.code-input input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 5px;
}