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

body,
html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: url('./../img/background.gif') no-repeat;
    background-size: cover;
}

.container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.login-box {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 20px;
}

.login-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 14px;
}

.input-group input::placeholder {
    font-weight: 600;
    color: #ccc;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #E39EA4;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #d68a90;
}