body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-in-box {
    background-color: white;
    padding: 48px 40px 36px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 75px;
    margin-bottom: 8px;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px;
}

p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.5;
    margin: 0 0 32px;
    color: #202124;
}

form {
    width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 8px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, .2);
}

.forgot-email {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 32px;
}

.guest-mode {
    font-size: 14px;
    margin-bottom: 4px;
}

.learn-more {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 26px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.create-account {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.next-button {
    background-color: #1a73e8;
    color: white;
    padding: 9px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

footer {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-top: 1px solid #dadce0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links a {
    color: #757575;
    font-size: 12px;
    text-decoration: none;
    margin-left: 24px;
}

select {
    font-size: 12px;
    color: #757575;
    border: none;
    background-color: transparent;
    appearance: none;
    padding: 5px;
    cursor: pointer;
}

select:focus {
    outline: none;
}