* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url(img/background.jpg);
    background-size: cover;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.403);
    text-align: center;
}

.login-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    font-size: 16px;
    border: 1px solid gray;
    border-radius: 5px;
    outline: none;
    background: none;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: gray;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus + label {
    top: -10px;
    background-color: #fff;
    padding: 0 5px;
    font-size: 12px;
    color: #333;
}

button {
    width: 100%;
    padding: 0.8rem;
    background-color: gray;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgb(110, 110, 110);
}

.register-link {
    margin-top: 1rem;
    font-size: 14px;
    color: #555;
}

.register-link a {
    color: gray;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.register-link a:hover {
    color: rgb(110, 110, 110);
}
