.formularz-logowania {
    max-width: 400px;
    margin: 0 auto;
}

.formularz-logowania .form-group {
    margin-bottom: 20px;
}

.formularz-logowania label {
	color: var(--colors-text-text-secondary-700, #414651);
	font-family: var(--Diet-Font-Text, Sarabun);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: var(--Line-height-text-sm, 20px); /* 111.111% */
}

.formularz-logowania input[type="email"],
.formularz-logowania input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
	color: var(--Diet-Button, #E04E38);
	font-family: var(--Diet-Font-Text, Sarabun);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: var(--Line-height-text-sm, 20px); /* 111.111% */
	overflow: hidden;
	color: var(--Diet-Secondary, #151515);
	text-overflow: ellipsis;
	font-family: var(--Diet-Font-Text, Sarabun);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: var(--Line-height-text-sm, 20px); /* 111.111% */
}

.formularz-logowania .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.formularz-logowania .form-options .forgot-password {
	color: var(--Diet-Button, #E04E38);
	font-family: var(--Diet-Font-Text, Sarabun);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: var(--Line-height-text-sm, 20px); /* 111.111% */
}

.formularz-logowania .form-options .forgot-password:hover {
    text-decoration: underline;
}

.formularz-logowania .form-submit button {
    width: 100%;
    padding: 18px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-xl, 16px);
	align-self: stretch;
	color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
	font-family: var(--Diet-Font-Text, Sarabun);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: var(--Line-height-text-sm, 20px); /* 90.909% */
	text-transform: uppercase;
}

.formularz-logowania .form-submit button:hover {
    background-color: #c0392b;
}

.formularz-logowania .register-link {
    text-align: center;
    margin-top: 15px;
}

.formularz-logowania .register-link a {
    color: #e74c3c;
    text-decoration: none;
}

.formularz-logowania .register-link a:hover {
    text-decoration: underline;
}