* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.login-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/teste.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.status-item i {
    font-size: 12px;
    opacity: 0.8;
}

.battery-text {
    font-size: 12px;
    font-weight: 500;
}


.login-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.user-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.user-avatar:hover .avatar-image {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.username {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-weight: 400;
}

.password-field {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
    overflow: hidden;
    height: 44px;
    width: 200px;
}

.field-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0 4px;
}

.field-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.field-btn i {
    font-size: 10px;
}

.password-input {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-input:hover {
    background: rgba(255, 255, 255, 0.05);
}

.password-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    user-select: none;
}

.login-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.option-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 400;
    min-width: 60px;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.option-btn i {
    font-size: 14px;
    margin-bottom: 1px;
}

.option-btn span {
    font-size: 9px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .user-avatar {
        width: 70px;
        height: 70px;
    }
    
    .username {
        font-size: 20px;
    }
    
    .login-options {
        flex-direction: column;
        gap: 12px;
    }
    
    .option-btn {
        padding: 10px 14px;
        min-width: 50px;
    }
}

.access-btn.loading {
    opacity: 0.8;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.3);
}

.access-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

