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

.signin-form {
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    padding: 2.5rem;
    border-radius: 24px;
}

.message-container {
    margin-bottom: 2.5rem;
    max-width: 500px
}

.message-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    margin-bottom: 1rem;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box; 
}

.message-item.success {
    background-color: #e6f4ea;
    color: #34a853;
}

.message-item.error {
    background-color: #fce8e6;
    color: #ea4335;
}

.message-item.info {
    background-color: #e8f0fe;
    color: #4285f4;
}

.message-item.warning {
    background-color: #fff0e6;
    color: #fbbc05;
}

.cta-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #000000;
    border-radius: 24px;
    background: transparent;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.cta-google:hover {
    background: #000000;
    color: white;
}

.cta-google svg {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
}

.separator {
    text-align: center;
    margin: 1.5rem 0;
    color: #5f6368;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #202124;
}

.form-group input {
    width: 100%;
    height: 48px; /* Set a fixed height to match icon visual size */
    padding: 0.75rem 1rem; /* Keep padding for internal spacing */
    border: 1px solid #e8eaed;
    border-radius: 24px;
    transition: border-color 0.2s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.form-group input:focus {
    outline: none;
    border-color: #4285f4;
}

.cta-submit {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    background: #000000;
    color: white;
}

.cta-submit:hover {
    background: #333333;
}

.signup-link {
    text-align: center;
    margin-top: 1.5rem;
}

.signup-link a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signin-form {
        min-width: unset;
        padding: 1.5rem;
    }
}

.terms-privacy {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem; /* Equivalent to 14px */
    color: #5f6368;
}

.terms-privacy a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.terms-privacy a:hover {
    text-decoration: underline;
}