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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px 0;
    background-color: #f5f5f5;
}

.larger {
    font-size: 16px;
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}


.logo {
    max-width: 200px;
    margin-bottom: 10px;
}

.button,
button,
input[type="submit"] {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    border: 0;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #357abd;
}

.mb-2 {
    margin-bottom: 20px;
}