* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.background-shapes .shape {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #d0daff;
}

.background-shapes .shape-1 {
    clip-path: polygon(0 0, 25% 0, 60% 100%, 0% 100%);
}

.background-shapes .shape-2 {
    clip-path: polygon(80% 0, 100% 0, 100% 29%, 77% 10%);
    right: 0;
}

.login-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.login-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    transition: border-bottom 0.3s ease;
}

.input-group input:focus {
    border-bottom-color: #6200ea;
}

.input-group label {
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    font-size: 1rem;
    color: #aaa;
    pointer-events: none;
    transition: transform 0.3s ease, font-size 0.3s ease;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 0.75rem;
    color: #6200ea;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 0;
    background-color: #6200ea;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3700b3;
}

@media (max-width: 1150px) {
    .illustration {
        display: none;
    }
}