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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
}

/* Container for the form */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Styling for the logo */
.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Styling for the options */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    text-decoration: none;
    background-color: #af105e;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.option-btn:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 600px) {
    h1 {
        font-size: 20px;
    }

    .option-btn {
        font-size: 16px;
        padding: 12px 16px;
    }
}
