body {
    font-family: Nunito Sans, sans-serif;
    background-color: #F0F3FA;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    color: #1F272E;

}

#root {
    font-family: Nunito Sans, sans-serif;
    background-color: #F0F3FA;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    color: #1F272E;
}

.pre-load-svg {
    justify-self: center;
    place-self: center;
    align-self: center;
    height: 100%;
} 

.Rectangle_Credit {
    animation-delay: -0.3s;
    transform-origin: 77.5% 50%;
}

.Rectangle_Insure {
    animation-delay: -0.6s;
    transform-origin: 50% 50%;
    
}

.Rectangle_Save {
    animation-delay: -0.9s;
    transform-origin: 27.5% 50%;

}

.Rectangle_Transact {
    animation-delay: -1.2s;
    transform-origin: 0% 50%;
}

.loader_svg > rect {
    animation-name: animate-square;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
}

.offset_1, .offset_2 {
animation-duration: 1.2s;
    animation-iteration-count: infinite;
}

.offset_1 {
    animation-name: offset_1_animation;
}

.offset_2 {
    animation-name: offset_2_animation;
}

@-webkit-keyframes animate-square {
    0%, 25%, 50%, 100% {
        transform: scale(0.7);
    }
    75% {
        transform: scale(1);
    }
}

@-webkit-keyframes offset_1_animation {
    0%, 25%, 50%, 100% {
        transform: translate(0px, 0px);
    } 
    75% {
        transform: translate(2px, 0px);
    }
}

@-webkit-keyframes offset_2_animation {
    0%, 75%, 100% {
        transform: translate(2px, 0px);
    }
    25%, 50% {
        transform: translate(0px, 0px);
    }
}

/*
.header {
    padding-top: 24px;
    padding-left: 24px;
    align-self: start;
    justify-self: start;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.header > h1 {
    font-size: 18px;
    font-weight: 650;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.vertical-separator-line {
    height: 24px;
    width: 1px;
    background: #CFD5E0;
}

.logo {
    text-align: center;
    padding-bottom: 24px;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 5px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

h2 {
    justify-self: center;
    text-align: center;
    padding-bottom: 16px;
    font-size: 32px;
    font-weight: 650;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0;
}

.supporting-text {
    justify-self: center;
    text-align: center;
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #1F272E;
}

.hyperlink {
    color: #2F70EF;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    padding-bottom: 8px;
    font-weight: 650;
    line-height: 16px;
    letter-spacing: 0;
    font-size: 14px;
    color: #4A535C;
}

input[type="text"],
input[type="password"] {
    width: 416px;
    max-width: 416px;
    min-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    border: 1px solid #A1ACBA;
    border-radius: 12px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 650;
    line-height: 24px;
    letter-spacing: 0;

}

button:hover {
    background-color: #005fa3;
}

.google-button {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: white;
    color: #1F272E;
    border: 1px solid #A1ACBA;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 8px;
}
.google-button:hover {
    background-color: rgba(47, 112, 239, 0.08);
}

.sso-button {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 8px;
}
.sso-button:hover {
    background-color: #218838;
}

.error-message {
    color: red;
    margin-bottom: 15px;
    text-align: center;
}/*