@media only screen and (min-width: 660px) {

    .login-component {
        margin-top: 30px !important;
    }

    .login-static-header {
        border-radius: 10px 10px 0px 0px !important;
    }

    .login-component-container {
        max-width: 600px;
    }
}

/*login component*/

input:focus {
    border-color: 1px solid var(--secondary-color) !important;
    /* Change the color to your preference */
    outline: 1px solid var(--secondary-color) !important;
    /* Remove the default focus outline */
}

.login-component-container {
    width: 100vw;
    max-width: 600px;
    margin: auto;
}

.login-static-header {
    height: 15vh;
    width: 100vw;
    max-width: 600px;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-form-container {
    background: inherit;
    padding-top: 76px;
    padding-left: 32px;
    padding-right: 32px;
    display: grid;
}

.form-label,
.form-control::placeholder {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin: 0;
}

form {
    display: grid !important;
}

.form-control,
.form-control:focus {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--text-color);
    font-size: 16px;
    line-height: 16px;
    border-radius: 0 !important;
}

.form-control {
    margin-bottom: 16px;
    padding: 6px 12px 6px 12px;
}

#create-profile-button {
    background-color: "__Button__";
    color: "__TextColor__";
    font-size: 14px;
    line-height: 14px;
    display: none;
    padding: 12px 14px;
    width: 100%;
    height: 42px;
    margin-bottom: 20px;
}