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

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
}

html {
    background: none;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

img {
    width: 100%;
}

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

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

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #6c63ff;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    background: white;
    padding: 0 0.25rem;
    transition: top 0.3s, font-size 0.3s;
    color: #aaa;
    pointer-events: none;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    color: #6c63ff;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #6c63ff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #5a52d4;
}

.passRecover {
    width: 100%;
    color: #5a52d4;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
    cursor: pointer;
}
.footer {
    width: 100%;
    height: 15px;
    margin-bottom: -30px;
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer span {
    font-size: 12px;
}

.footer a {
    color: #3c2c96;
}