body {
    font-family: Arial, sans-serif;
    background-color: #e0e2e6;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: transparent;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
}

.login-box, .verification-box {
    background-color: #f0f2f6;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin: 2rem auto 0;
    text-align: center;
}

.login-text, .verification-text {
    font-size: 24px;
    font-weight: bold;
    color: #4e9ff0;
    margin-bottom: 20px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-button, .email-button, .verify-button, .logout-button {
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.custom-button:hover, .email-button:hover, .verify-button:hover, .logout-button:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
}

.email-button, .verify-button, .logout-button {
    background-color: #1a73e8;
    color: white;
    border: none;
}

.email-button:hover, .verify-button:hover, .logout-button:hover {
    background-color: #1765cc;
}

.custom-button img {
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #757575;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dadce0;
}

.divider::before {
    margin-right: .25em;
}

.divider::after {
    margin-left: .25em;
}

.custom-input, .verification-input {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #dadce0;
    border-radius: 10px;
    outline: none;
}

.custom-input:focus, .verification-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 1px 2px 0 rgba(26,115,232,0.45), 0 1px 3px 1px rgba(26,115,232,0.3);
}

.terms-text, .resend-text {
    color: #757575;
    font-size: 12px;
    max-width: 280px;
    margin: 0 auto;
}

.terms-text a, .resend-text a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-text a:hover, .terms-text a:focus, .resend-text a:hover, .resend-text a:focus {
    color: #1765cc;
    text-decoration: underline;
}

.user-email {
    font-weight: bold;
    color: #1a73e8;
}

.dashboard {
    max-width: 800px;
    margin: 2rem auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

