* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 280px;
    max-width: 100%;
    margin: 20px 0;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #333;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

button, .button {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    background: #f2f2f2;
    color: #000;
    border: 1px solid #dcdcdc;
    text-decoration: none;
}
