* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #0f0f13;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.login-container {
    display: flex;
    width: 900px;
    height: 550px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.login-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    position: relative;
}

.login-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 15, 19, 0.1), rgba(15, 15, 19, 1));
}

.login-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #0f0f13;
    z-index: 1;
}

.login-form h2 {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.login-form input {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: #1a73e8;
    background: rgba(255, 255, 255, 0.08);
}

.login-form button {
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.login-form button:hover {
    background: #1557b0;
}

.erro {
    background: rgba(217, 48, 37, 0.15);
    color: #ff5b52;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid rgba(217, 48, 37, 0.3);
    text-align: center;
}