:root {
    --primary-color: #ee0979;
    --secundary--color: #FF6A00;
    box-sizing: border-box;
}

:root {
    box-sizing: border-box;
}

body {
    padding: 80px;
    margin: 0;
    color: #262a33;
    background: #262a33;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, monospace;
    overflow-x: hidden;
}

.container {
    min-height: calc(100vh - 80px * 2);
    display: grid;
    grid-template-columns: 50% 50%;
    border-radius: 10px;
    overflow: hidden;
}

.login-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6rem;
    background: white;
}

.login-rechts {
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    display: flex;
    justify-content: center;
}

.login-rechts img {
    width: 40%;
}

.login-header {
    margin-bottom: 50px;
}

.login-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.login-header p {
    opacity: 0.7;
}

.login-formular {
    width: 450px;
}

.login-formular p {
    display: none;
    padding-left: 0.6rem;
}

.login-formular-inhalt {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.formular-element label {
    display: inline-block;
    background-color: white;
    margin-bottom: 10px;
    position: absolute;
    padding: 0 10px;
    transform: translate(15px, -10px);
    font-size: 14px;
}

.formular-element input {
    border: 1px solid #262a33;
    height: 55px;
    outline: none;
    padding: 0 2rem;
    width: calc(100% - 4rem);
    transition: background 0.5s;
    border-radius: 10px;
    font-size: 16px;
}

button {
    border: none;
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    color: white;
    padding: 0 2rem;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    height: 55px;
    cursor: pointer;
}

button:hover {
    background: #262a33bb;
}

/* Responsive */

@media (max-width: 1350px) {
    .login-links {
        padding: 50px !important;
   }
    .login-formular {
        width: 100%;
   }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
   }
    .container {
        grid-template-columns: auto;
   }
    .login-rechts {
        display: none;
   }
}
