

button:focus {
    outline: none;             /* Removes the default navy ring */
    border: 1px solid #262626; /* Adds your custom color as a border instead */
}

.submit-btn-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4.9px;
    min-width: 100px;
    height: 32px;
}
.submit-btn-sm:hover {
    background-color: #f8f8f8;
    border-color: #c0c0c0;
    color: #ff397a;
}
.submit-btn-sm:active {
    background-color: #eeeeee;
}

.submit-btn-md {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4.9px;
    min-width: 150px;
    height: 40px;
}
.submit-btn-md:hover {
    background-color: #f8f8f8;
    border-color: #c0c0c0;
    color: #ff397a;
}
.submit-btn-md:active {
    background-color: #eeeeee;
}

.submit-btn-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4.9px;
    min-width: 200px;
    height: 40px;
}
.submit-btn-lg:hover {
    background-color: #f8f8f8;
    border-color: #c0c0c0;
    color: #ff397a;
}
.submit-btn-lg:active {
    background-color: #eeeeee;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4.9px;
    min-width: 325px;
    height: 50px;
}
.google-btn:hover {
    background-color: #ffffff; /* A slightly darker shade for hover depth */
    border-color: #909090;
}
.google-btn:active {
    background-color: #eeeeee;
}
.google-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 8px;
    margin-right: 12px;
}
.google-icon {
    width: 100%;
    height: 100%;
}
.btn-text {
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.25px;
}

/* White Variation */
.google-btn-white {
    background-color: #ffffff; /* Your Pink */
    color: #000000;            /* White Foreground */
}
.google-btn-white:hover {
    background-color: #ffffff; /* A slightly darker shade for hover depth */
    border-color: #c0c0c0;
    color: #ff397a;
}
.google-btn-white .btn-text {
    margin: 0 auto;           /* Ensures text is dead-center since there's no icon */
}
/* Gray Variation */
.google-btn-gray {
    background-color: #f6f6f6; /* A slightly darker shade for hover depth */
    color: #000000;            /* White Foreground */
}
.google-btn-gray:hover {
    background-color: #fcfcfc; /* Your Pink */
    border-color: #c0c0c0;
    color: #262626;
}
.google-btn-gray .btn-text {
    margin: 0 auto;           /* Ensures text is dead-center since there's no icon */
}
/* Pink Variation */
.google-btn-pink {
    background-color: #ff397a; /* Your Pink */
    color: #ffffff;            /* White Foreground */
}
.google-btn-pink:hover {
    background-color: #f42d6d;
    border-color: #c0c0c0;
    color: #fff;
}
.google-btn-pink .btn-text {
    margin: 0 auto;           /* Ensures text is dead-center since there's no icon */
}
