body {
    background-color: #ffffff; 
    color: #1a1b29; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0; 
}

.error-message {
    color: red; 
}

a {
    color: #0071dc; 
    font-weight: 600;
}

h2 {
    margin-top: 0.6rem;
    margin-bottom: 0.2rem; 
    font-size: 1.225rem;
    color: #414141; 
}

p {
    font-size: 0.9rem;
    opacity: 1; 
    transition: opacity .33s ease-in-out;  
    color: #0071dc;
}

p:hover {
    opacity: .6; 
}

.newToCartrizz {
    margin-top: 2.75rem; 
    margin-bottom: 4rem; 
}

.passwordForgot {
    padding-top: 0.5rem;
    margin: 0;  
}

.login_mainContain {
    border-radius: 5px;
    background-color: #ffffff; 
    width: 100%; 
    display: flex; 
    justify-content: center;
}


#password, #username{
    padding: 0.65rem 0.45rem; 
    margin-top: .225rem; 
    width: 95%;
    border-radius: 0.5rem; 
    border: 1.5px solid hsl(0, 0%, 0%, 0.25); 
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);        /* subtle lift */
  
}

.login_secContain {
    display: flex; 
    justify-content: center;
    max-width:325px; 
    margin-top: 4.25rem; 
    padding: 0.75rem 1.5rem 2.5rem 1.5rem;
    border-radius: 10px; 
}

.login_logo { 
    display: flex; 
    align-items: center; 
    padding-left: .25rem;
    padding-top: .75rem; 
    cursor: pointer; 
    Opacity: 1; 
    transition: opacity .33s ease-in-out; 
    width: fit-content; 
}

.login_mainContain form div {
    margin-top: .5rem; 
}

.login_submit {
    margin-top: 1.25rem;
    border-radius: 1.5rem;
    padding: 0.90rem 1rem;       
    border: none;
    cursor: pointer;
    background-color: #0071dc;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 113, 220, 0.30);
    transition: all 0.23s ease-in-out;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_submit:hover {
    background-color: #0060c0;                        
    box-shadow: 0 6px 16px rgba(0, 113, 220, 0.40);     
}

.login_submit:active {
    transform: translateY(2px);                       
    box-shadow: 0 2px 6px rgba(0, 113, 220, 0.30);      
}


.login_logo:hover {
    opacity: .6; 
}

span {
    font-weight: 600; 
}

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

.pWordFlex p {
    margin: 0; 
}

label {
    font-weight: 600; 
}

.google-signin-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0rem 2.25rem 0rem;
}

.google-signin-wrapper .g_id_signin {
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 30px !important;  /* overrides Google's default */
}

.google-signin-wrapper:hover .g_id_signin {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@media screen and (max-width: 576px) {
    .login_submit {
        width: 100%; 
    }

    .login_secContain {
        padding: 0rem; 
        margin-top: 1.15rem; 
    }
}



