:root {
    --primary-color: #10c395;
    --secondary-color: #5940ff;
    --app-background: #f8f9fa;
}

html,
body {
    background-color: var(--app-background);
}

.app-background {
    background-color: var(--app-background) !important;
}

.btn-primary-color {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    border: none;
}

.btn-primary-color:hover {
    background-color: var(--primary-color);
}

.btn-secondary-color {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 8px;
    border: none;
}

.btn-secondary-color:hover {
    background-color: var(--secondary-color);
}

.form-signin {
    max-width: 330px;
    padding: 1rem;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
