body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    transform: scale(1.1);
    will-change: transform, filter;
}

.login-box {
    background-color: white;
    padding: 35px;
    width: 350px;
    border-radius: 12px;
}

.login-box h3 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 24px;
}

.login-box h6 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    color: #666666;
}

.login-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #4F39F6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #3A25D4;
    transition: background-color 0.3s ease;
}

.login-box input::placeholder {
    color: #9aa0a6;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.login-box input:focus {
    outline: none;
    border-color: #4F39F6;
}

.login-box {
    animation: macOpen 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes macOpen {
    0%{
        transform: translateY(100px) scale(0.7);
        opacity: 0;
    }
    100%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}