@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
	  font-family: "Roboto", sans-serif;
	  font-optical-sizing: auto;
	  font-weight: <weight>;
	  font-style: normal;
	  font-variation-settings:
		"wdth" 100;
}



body {
    height: 100vh;
    background: #f4f6f9;
}

/* Container zentriert alles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Login Box */
.login-box {
    background: white;
    padding: 40px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Titel */
.login-box h1 {
    text-align: center;
    margin-bottom: 25px;
}

/* Labels */
label {
    font-size: 14px;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #2c7be5;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #1a68d1;
}

.msg {
  margin-top: 12px;
  font-size: 14px;
  color: #b42318;
  min-height: 18px;
  text-align: center;
}
