body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

.logo img {
    width: 100px;
}

.logo h1 {
    font-size: 24px;
    margin: 10px 0;
}

.subtitle {
    color: #0099FF;
    font-size: 12px;
    margin-bottom: 10%;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 94%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.input-group input:focus {
    border-color: #0099FF;
}

.button-group button {
    width: 100%;
    background-color: #e0e0e0;
    color: #0099FF;
    border: none;
    padding: 15px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.button-group button i {
    margin-right: 10px;
}

.button-group button:hover {
    background-color: #c8c8c8;
}

.links {
    font-size: 12px;
    color: #0099FF;
    display: flex;
    justify-content: space-between;
    margin-top: 10%;
}

.links a {
    text-decoration: none;
    color: #0099FF;
}

.illustration {
    margin: 20px 0;
}

.illustration img {
    width: 100%;
}