* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
    display: flex;
    padding: 12px;
    align-items: flex-start;
    gap: 12px;
    height: 100vh; /* #changed */
    flex-shrink: 0;
    background: #C63;
    font-family: "Noto Sans", sans-serif;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%), url('../../images/bg-login-2.jpg') lightgray 50% / cover no-repeat;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
    justify-content: center;
}
.card-login {
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30), 0px 8px 12px 6px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    border: 1px solid #A19D9B;
    padding: 20px;
    background: white;
}
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: row;
    /* align-items: flex-start; */
    align-items: center; /* @todo_ui geändert, wenn zb ein button neben dem input feld steht (nu detail rechnungsdaten) -> schauen obs überall anders auch passt*/
    flex: 1 0 0;
    width: 100%;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-label {
    color: var(--md-sys-color-light-on-surface10, #140A05);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.form-control {
    display: flex;
    padding: 16px;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: #F1F0F0;
    border: none; /* #added */

    color: #140A05;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;

    /* flex: 1 0 0; #added */
    flex: 1; /* #changed wegen textarea höhe- prüfen bei anderen */
}
h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
}
.button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #C63;
    border: 1px solid #C63;
    padding: 16px 20px 16px 16px;
    gap: 8px;
    border-radius: 12px;
	cursor: pointer;

    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;

    /* Shadow-Button1 */
    box-shadow: 0px 1px 5px 0px rgba(51, 51, 51, 0.20);
}
.button span {
    display: flex;
    padding: 0 24px 0 16px; /* #changed */
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-size: 16px;
}
.button span i {
    width: 18px;
    /* height: 18px; */
}
.form-submit {
    display: flex;
    justify-content: flex-end;
}

.note {
    position: absolute;
    display: flex;
    top: -100px;
    width: calc(100vw - 48px);
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: var(--md-ref-color-Light-Red05, #C32E27);
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.30);
	animation: slideDown .5s ease-in forwards;
}
@keyframes slideDown {
	from { top: -100px }
	to { top: 24px }
}
.note p {
    color: var(--md-sys-color-light-red-container95, #FBEBEA);
    text-align: center;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.15px;
}